diff --git a/src/app/page.tsx b/src/app/page.tsx index 20d61c9..09caea8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,41 +1,69 @@ -"use client" +"use client"; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import TextAbout from '@/components/sections/about/TextAbout'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; -import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Sparkles, Heart, ChefHat } from "lucide-react"; +import { Sparkles, Mail, MapPin, Clock } from "lucide-react"; +import Image from 'next/image'; + +export default function HomePage() { + const galleryImages = [ + { + id: '1', + src: 'https://images.unsplash.com/photo-1504674900152-b8b27e3dcded?w=600&h=400&fit=crop', + alt: 'Restaurant interior ambiance' + }, + { + id: '2', + src: 'https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=600&h=400&fit=crop', + alt: 'Signature dish plating' + }, + { + id: '3', + src: 'https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?w=600&h=400&fit=crop', + alt: 'Fine dining experience' + }, + { + id: '4', + src: 'https://images.unsplash.com/photo-1495195134817-aeb325ef3c27?w=600&h=400&fit=crop', + alt: 'Chef preparing signature dishes' + }, + { + id: '5', + src: 'https://images.unsplash.com/photo-1504674900152-b8b27e3dcded?w=600&h=400&fit=crop', + alt: 'Elegant table setting' + }, + { + id: '6', + src: 'https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=600&h=400&fit=crop', + alt: 'Appetizer showcase' + } + ]; -export default function LandingPage() { return ( +