diff --git a/src/app/page.tsx b/src/app/page.tsx index 91acc0d..00e0bce 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqDouble from '@/components/sections/faq/FaqDouble'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import FooterCard from '@/components/sections/footer/FooterCard'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; +import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; @@ -17,39 +17,76 @@ export default function LandingPage() { return (
- +
+ +
+
@@ -58,14 +95,47 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split" gridVariant="uniform-all-items-equal" - useInvertedBackground={true} + useInvertedBackground={false} products={[ - { id: "1", name: "Truffle Infused Risotto", price: "₹1250", imageSrc: "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-fillet-served-with-bulgur-vegetables-white-wine_141793-2435.jpg" }, - { id: "2", name: "Smoked Himalayan Lamb", price: "₹1800", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-caviar-shrimps_140725-6375.jpg" }, - { id: "3", name: "Char-Grilled Sea Bass", price: "₹1650", imageSrc: "http://img.b2bpic.net/free-photo/appetizer-served-with-cucumber-sauce-wine_140725-7763.jpg" } + { + id: "1", + name: "Truffle Infused Risotto", + price: "₹1250", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-fillet-served-with-bulgur-vegetables-white-wine_141793-2435.jpg", + }, + { + id: "2", + name: "Smoked Himalayan Lamb", + price: "₹1800", + imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-caviar-shrimps_140725-6375.jpg", + }, + { + id: "3", + name: "Char-Grilled Sea Bass", + price: "₹1650", + imageSrc: "http://img.b2bpic.net/free-photo/appetizer-served-with-cucumber-sauce-wine_140725-7763.jpg", + }, + { + id: "4", + name: "Gold Leaf Chocolate Torte", + price: "₹950", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-cookie-pastries-inside-blue-plate-light-table-cake-biscuit-sugar-sweet-pastry-bake_140725-24479.jpg", + }, + { + id: "5", + name: "Artisanal Berry Glazed Duck", + price: "₹1400", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-fresh-raspberries-babies-white-tray-mixed-color-table_140725-86587.jpg", + }, + { + id: "6", + name: "Spiced Hibiscus Cooler", + price: "₹550", + imageSrc: "http://img.b2bpic.net/free-photo/campagne-glass-with-champagne-it-garnished-with-dried-lemon-slice_140725-1506.jpg", + }, ]} title="Signature Dishes" - description="Our chefs redefine traditional flavors with modern techniques and local ingredients." + description="Indulge in our chef-curated selection of premium delicacies designed to excite your palate." /> @@ -73,11 +143,34 @@ export default function LandingPage() { @@ -86,14 +179,26 @@ export default function LandingPage() { @@ -102,36 +207,69 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { id: "1", title: "Where are you located?", content: "Find us in the vibrant heart of Guwahati, serving excellence daily." }, - { id: "2", title: "Are reservations necessary?", content: "Highly recommended for weekends to guarantee your preferred seating." } + { + id: "1", + title: "What are your opening hours?", + content: "We are open daily from 12:00 PM to 11:30 PM.", + }, + { + id: "2", + title: "Do you offer delivery?", + content: "Yes, we offer direct delivery and are available on all major delivery platforms.", + }, + { + id: "3", + title: "Is table reservation required?", + content: "While walk-ins are welcome, we highly recommend reserving your table, especially for weekend evenings.", + }, ]} - title="Plan Your Visit" - description="Find us and secure your table for an evening to remember." + title="Visit Details" + description="Everything you need to know about your dining experience with us." faqsAnimation="slide-up" />
); -} \ No newline at end of file +}