diff --git a/src/app/page.tsx b/src/app/page.tsx index 8803b18..e8414be 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,13 +2,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; export default function LandingPage() { return ( @@ -31,7 +31,8 @@ export default function LandingPage() { { name: "Home", id: "hero" }, { name: "About", id: "about" }, { name: "Menu", id: "menu" }, - { name: "Contact", id: "contact" }, + { name: "Reviews", id: "testimonials" }, + { name: "Reserve", id: "contact" }, ]} brandName="Private Cafe" /> @@ -46,9 +47,6 @@ export default function LandingPage() { { imageSrc: "http://img.b2bpic.net/free-photo/photo-young-redhead-bearded-man-white-shirt-reading-book-cafeteria_171337-10019.jpg?_wi=1", imageAlt: "Cafe interior" }, { imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup_74190-5781.jpg?_wi=1", imageAlt: "Coffee art" }, { imageSrc: "http://img.b2bpic.net/free-photo/high-angle-view-delicious-breakfast-table-with-salad-fried-eggs-pastry-white-background-horizontal_176474-3776.jpg?_wi=1", imageAlt: "Fresh pastries" }, - { imageSrc: "http://img.b2bpic.net/free-photo/boy-eating-restaurant_23-2148172673.jpg?_wi=1", imageAlt: "Minimalist decor" }, - { imageSrc: "http://img.b2bpic.net/free-photo/closeup-businessman-drinking-coffee-while-using-smart-phone-cafe_637285-8838.jpg?_wi=1", imageAlt: "Professional barista" }, - { imageSrc: "http://img.b2bpic.net/free-photo/loving-couple-sitting-cafe-drinking-coffee-using-phone_171337-19674.jpg", imageAlt: "Cafe details" }, ]} /> @@ -75,9 +73,6 @@ export default function LandingPage() { { id: "p1", name: "Signature Cappuccino", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cappuccino-with-beautiful-painting-foam_181624-8920.jpg" }, { id: "p2", name: "Butter Croissant", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/breakfast_23-2148129753.jpg" }, { id: "p3", name: "Acai Breakfast Bowl", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-served-with-milk-dessert_140725-1901.jpg" }, - { id: "p4", name: "Organic Earl Grey", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-kettle-with-tea-lemon-tea-light-background-flower-color-morning-breakfast-food-fruit-flavor-ceremony_140725-159350.jpg" }, - { id: "p5", name: "Avocado Sourdough Toast", price: "$14.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-cake-slices-with-strawberries-light_140725-120650.jpg" }, - { id: "p6", name: "Lemon Zest Cake", price: "$7.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-biscuit-rolls-with-cup-tea-dark-surface_140725-74862.jpg" }, ]} title="Our Curated Menu" description="Artisan selections prepared daily with locally sourced ingredients." @@ -85,27 +80,28 @@ export default function LandingPage() {
-
-