import React from 'react'; import Icon from '../../shared/components/icon'; import { SocialLink, FooterColumn, PaymentIcon, FooterProps } from './types'; const DefaultLogo = () => ( ); const defaultSocial: SocialLink[] = [ { label: 'Instagram', href: '#', iconName: 'ui-instagram' }, { label: 'LinkedIn', href: '#', iconName: 'ui-linkedin' }, { label: 'Facebook', href: '#', iconName: 'ui-facebook' } ]; const defaultColumns: FooterColumn[] = [ { title: 'Bestemmingen', links: [ { label: 'Spanje', href: '#' }, { label: 'Kroatië', href: '#' }, { label: 'Tenerife', href: '#' }, { label: 'Griekenland', href: '#' }, { label: 'Ibiza', href: '#' } ] }, { title: 'Themareizen', links: [ { label: 'Huwlijksreizen', href: '#' }, { label: 'Familiereizen', href: '#' }, { label: 'Groepsreizen', href: '#' }, { label: 'Golf', href: '#' }, { label: 'Sport', href: '#' } ] }, { title: 'Info diensten', links: [ { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }, { label: 'About us', href: '#' }, { label: 'Contact Us', href: '#' } ] }, { title: 'About us', links: [ { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }, { label: 'About us', href: '#' }, { label: 'Contact Us', href: '#' } ] } ]; const defaultPayments: PaymentIcon[] = [ { src: 'https://koningaap.be/public/KoningAap/payments/bancontactmrcash-logo.svg', alt: 'bank' }, { src: 'https://koningaap.be/public/KoningAap/payments/mastercard-logo.svg', alt: 'mastercard' }, { src: 'https://www.tui.be/sites/all/themes/tui/img/maestro.png', alt: 'maestro' }, { src: 'https://koningaap.be/public/KoningAap/payments/visa-logo.svg', alt: 'visa' }, { src: 'https://1000logos.net/wp-content/uploads/2016/10/American-Express-logo.png', alt: 'american express' } ]; export const Footer: React.FC = ({ className, logo, onLogoClick, social = defaultSocial, columns = defaultColumns, copyrightText = '© 2024 Travel Agency. All rights reserved.', payments = defaultPayments }) => { return ( ); }; export default Footer;