diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx new file mode 100644 index 0000000..ce5386b --- /dev/null +++ b/src/components/layout/Footer.tsx @@ -0,0 +1,121 @@ +import { Camera, Clock, Globe, Mail, MapPin, Phone } from 'lucide-react' + +import Link from 'next/link' + +const quickLinks = [ + { label: 'Home', href: '/' }, + { label: 'Five Room Homestead', href: '#rooms' }, + { label: 'Franschhoek Heritage Story', href: '#our-story' }, + { label: 'Farmstead Gallery', href: '#gallery' }, + { label: 'Book Your Farmstay', href: '#book-now' }, + { label: 'Find Die Opstal', href: '#find-us' }, +] + +const socialLinks = [ + { icon: Globe, href: '#', label: 'Facebook' }, + { icon: Camera, href: '#', label: 'Instagram' }, +] + +export default function Footer() { + const year = new Date().getFullYear() + + return ( + + ) +}