diff --git a/src/app/page.tsx b/src/app/page.tsx index 30c7fc2..da050e4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import { Sparkles } from "lucide-react"; +import ContactForm from '@/components/form/ContactForm'; +import { Sparkles, Mail, Instagram, CalendarCheck, ShoppingBag } from "lucide-react"; export default function LandingPage() { return ( @@ -35,11 +36,11 @@ export default function LandingPage() { { name: "Our Story", id: "about" }, { name: "Menu", id: "menu" }, { name: "Events", id: "events" }, - { name: "Contact", id: "/contact" }, + { name: "Contact", id: "contact" }, ]} brandName="The Table" button={{ - text: "Order Now", href: "#menu" + text: "Order Now", href: "#menu" }} /> @@ -52,7 +53,7 @@ export default function LandingPage() { description="Experience fine dining reimagined with fresh local ingredients and a warm, welcoming atmosphere in the heart of the city." tag="Voted Best in Town" buttons={[ - { text: "Book Table", href: "/contact" }, + { text: "Book Table", href: "#contact" }, { text: "View Menu", href: "#menu" }, ]} mediaItems={[ @@ -82,14 +83,14 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { id: "f1", title: "Mobile Responsive", subtitle: "View our menu effortlessly on any device.", category: "Service", value: "100%" }, - { id: "f2", title: "Online Ordering", subtitle: "Order your favorite meals ahead with one click.", category: "Convenience", value: "Fast" }, - { id: "f3", title: "Event RSVP", subtitle: "Manage your event attendance with ease.", category: "Booking", value: "Easy" }, - { id: "f4", title: "Newsletter Signup", subtitle: "Join our community for updates and perks.", category: "Community", value: "Join" }, - { id: "f5", title: "Social Feed", subtitle: "Follow our culinary journey on Instagram.", category: "Social", value: "Live" }, + { id: "f1", title: "Mobile Responsive", subtitle: "Seamless experience across all devices.", category: "Design", value: "Smooth", buttons: [{text: "Learn More"}] }, + { id: "f2", title: "Online Ordering", subtitle: "Order meals ahead with one click.", category: "Convenience", value: "Quick", buttons: [{text: "Order Now"}] }, + { id: "f3", title: "Event RSVP", subtitle: "Register for special dining events.", category: "Booking", value: "Open", buttons: [{text: "RSVP Now"}] }, + { id: "f4", title: "Newsletter", subtitle: "Stay updated with special perks.", category: "Community", value: "Join", buttons: [{text: "Sign Up"}] }, + { id: "f5", title: "Social Feed", subtitle: "Check out our live Instagram gallery.", category: "Social", value: "Live", buttons: [{text: "View Feed"}] }, ]} - title="Modern Restaurant Amenities" - description="Designed for your comfort and connection, our digital-first approach ensures a seamless experience from booking to dining." + title="Modern Restaurant Experience" + description="Designed for your comfort, our digital-first approach ensures a seamless connection from reservation to the last bite." /> @@ -103,28 +104,21 @@ export default function LandingPage() { { id: "p1", name: "Artisan Bread Basket", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/sliced-greenery-vegetables-pomegranate-arils-plate_114579-86474.jpg" }, { id: "p2", name: "Seared Prime Steak", price: "$48", imageSrc: "http://img.b2bpic.net/free-photo/fried-eggplant-with-tomatoes-sesame-seeds-plate_140725-9191.jpg" }, { id: "p3", name: "Homemade Basil Pasta", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/vegan-pasta-white-plate_23-2148305758.jpg" }, - { id: "p4", name: "Pan-Seared Sea Bass", price: "$36", imageSrc: "http://img.b2bpic.net/free-photo/delicious-dish-with-quinoa-meat_181624-28743.jpg" }, - { id: "p5", name: "Dark Chocolate Mousse", price: "$14", imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-cake-with-chocolate-raisins-light-dark-background_140725-132620.jpg" }, - { id: "p6", name: "Fresh Harvest Salad", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/bowl-salad-with-fried-potatoes-arugula-cucumber-lettuce-yoghurt_140725-1500.jpg" }, ]} - title="Seasonal Menu Highlights" - description="Artisanal ingredients meet culinary expertise in every curated plate we serve." + title="Seasonal Menu" + description="Carefully crafted dishes using locally sourced produce." /> -