diff --git a/src/app/page.tsx b/src/app/page.tsx index 9158dcb..7121ce6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa import TeamCardOne from "@/components/sections/team/TeamCardOne"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; import { Coffee, Sparkles, Leaf } from "lucide-react"; export default function HomePage() { @@ -20,7 +21,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="medium" sizing="mediumLargeSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="subtle-shadow" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="layered" @@ -32,15 +33,13 @@ export default function HomePage() { brandName="DH Café" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "/menu" }, + { name: "Menu", id: "menu" }, { name: "Reservations", id: "reservations" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, ]} button={{ - text: "Reserve Table", - href: "reservations", - }} + text: "Reserve Table", href: "reservations"}} /> @@ -52,20 +51,15 @@ export default function HomePage() { tag="Award-Winning Café" tagIcon={Coffee} background={{ - variant: "aurora", - }} + variant: "glowing-orb"}} imageSrc="http://img.b2bpic.net/free-photo/close-up-barista-pouring-hot-water_23-2148865612.jpg" imageAlt="DH Café specialty coffee and artisan desserts" imagePosition="right" buttons={[ { - text: "Reserve Now", - href: "reservations", - }, + text: "Reserve Now", href: "reservations"}, { - text: "View Menu", - href: "/menu", - }, + text: "View Menu", href: "menu"}, ]} mediaAnimation="slide-up" tagAnimation="slide-up" @@ -85,9 +79,7 @@ export default function HomePage() { imageAlt="DH Café cosy interior with premium coffee bar" buttons={[ { - text: "Learn More", - href: "#", - }, + text: "Learn More", href: "#"}, ]} useInvertedBackground={false} tagAnimation="slide-up" @@ -95,6 +87,35 @@ export default function HomePage() { /> + {/* Menu Section */} + + {/* Features Section */}
@@ -340,58 +265,35 @@ export default function HomePage() { copyrightText="© 2025 DH Café. All rights reserved. Better coffee for more people." columns={[ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { - label: "Menu", - href: "/menu", - }, + label: "Menu", href: "menu"}, { - label: "Reservations", - href: "reservations", - }, + label: "Reservations", href: "reservations"}, { - label: "About Us", - href: "#", - }, + label: "About Us", href: "about"}, { - label: "Contact", - href: "#", - }, + label: "Contact", href: "contact"}, ], }, { - title: "Locations", - items: [ + title: "Locations", items: [ { - label: "Gachibowli", - href: "#", - }, + label: "Gachibowli", href: "#"}, { - label: "Sarath City Capital Mall, Kondapur", - href: "#", - }, + label: "Sarath City Capital Mall, Kondapur", href: "#"}, { - label: "Jayabheri Pine Valley Colony", - href: "#", - }, + label: "Jayabheri Pine Valley Colony", href: "#"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, { - label: "Cookie Policy", - href: "#", - }, + label: "Cookie Policy", href: "#"}, ], }, ]}