diff --git a/src/app/page.tsx b/src/app/page.tsx index 9e00c13..d675905 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,9 +8,17 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Heart, Sparkles, Star, Camera } from 'lucide-react'; +import { Heart, Sparkles, Star, Camera, Clock, MapPin, Phone, Facebook } from 'lucide-react'; export default function LandingPage() { + const handlePhoneClick = () => { + window.location.href = 'tel:628984413'; + }; + + const handleFacebookClick = () => { + window.open('https://facebook.com', '_blank'); + }; + return ( @@ -217,32 +232,32 @@ export default function LandingPage() { columns={[ { title: "Menu", items: [ - { label: "Coffee", href: "#menu" }, - { label: "Pastries", href: "#menu" }, - { label: "Cakes", href: "#menu" }, - { label: "Breakfast", href: "#menu" } + { label: "Coffee Drinks", href: "#menu" }, + { label: "Pastries & Cakes", href: "#menu" }, + { label: "Tres Leches", href: "#menu" }, + { label: "Breakfast Toasts", href: "#menu" } ] }, { - title: "About", items: [ - { label: "Our Story", href: "#about" }, - { label: "Quality Promise", href: "#why-fans" }, - { label: "Community", href: "#reviews" }, - { label: "Careers", href: "#" } + title: "Visit", items: [ + { label: "Calle del Dr. Esquerdo 180, Retiro", href: "#visit" }, + { label: "Near Pacífico Metro", href: "#visit" }, + { label: "Mon-Fri 7am-8pm", href: "#" }, + { label: "Sat-Sun 8am-9pm", href: "#" } ] }, { title: "Contact", items: [ - { label: "Pacífico, Madrid", href: "#visit" }, - { label: "Mon-Fri 7am-8pm", href: "#" }, - { label: "Sat-Sun 8am-9pm", href: "#" }, - { label: "Instagram", href: "#" } + { label: "Phone: 628 98 44 13", href: "tel:628984413" }, + { label: "Order Online", href: "#order" }, + { label: "Dine-In | Takeaway | Delivery", href: "#visit" }, + { label: "Follow on Facebook", href: "https://facebook.com" } ] } ]} - copyrightText="© 2025 Fans Coffee & Bakery. All rights reserved." + copyrightText="© 2025 Fans Coffee & Bakery. All rights reserved. Quality Coffee & Artisanal Bakery near Pacífico, Madrid." /> ); -} +} \ No newline at end of file