Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f5b35a155e | |||
| 7d699b2fef |
224
src/app/page.tsx
224
src/app/page.tsx
@@ -2,14 +2,14 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import { Phone } from "lucide-react";
|
import { Mail } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Cabra"
|
brandName="Cabra"
|
||||||
/>
|
/>
|
||||||
@@ -56,31 +48,19 @@ export default function LandingPage() {
|
|||||||
description="Experience the essence of modern culinary craft in a warm, inviting setting. Reservations available for lunch and dinner."
|
description="Experience the essence of modern culinary craft in a warm, inviting setting. Reservations available for lunch and dinner."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Table",
|
text: "Book Table", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
slides={[
|
slides={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg?_wi=1", imageAlt: "Cabra restaurant dining room"},
|
||||||
imageAlt: "Cabra restaurant dining room",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/white-plate-with-originally-served-salad-stands-dark-wooden-t_1304-4651.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/white-plate-with-originally-served-salad-stands-dark-wooden-t_1304-4651.jpg?_wi=1", imageAlt: "Gourmet appetizer plate"},
|
||||||
imageAlt: "Gourmet appetizer plate",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg?_wi=1", imageAlt: "Herb crusted steak"},
|
||||||
imageAlt: "Herb crusted steak",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=1", imageAlt: "Pan seared sea bass"},
|
||||||
imageAlt: "Pan seared sea bass",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-gourmet-dish-front-view_23-2148516905.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-gourmet-dish-front-view_23-2148516905.jpg?_wi=1", imageAlt: "Professional kitchen atmosphere"},
|
||||||
imageAlt: "Professional kitchen atmosphere",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -93,17 +73,11 @@ export default function LandingPage() {
|
|||||||
description="At Cabra, we believe in the harmony of fresh, locally sourced ingredients and refined culinary techniques. Our journey began with a passion for bringing people together over exceptional food and wine."
|
description="At Cabra, we believe in the harmony of fresh, locally sourced ingredients and refined culinary techniques. Our journey began with a passion for bringing people together over exceptional food and wine."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Farm to Table",
|
title: "Farm to Table", description: "We source ingredients from local farmers."},
|
||||||
description: "We source ingredients from local farmers.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Expert Chefs",
|
title: "Expert Chefs", description: "Our team is led by world-class culinary masters."},
|
||||||
description: "Our team is led by world-class culinary masters.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Handcrafted Wine",
|
title: "Handcrafted Wine", description: "Curated selection of global vintages."},
|
||||||
description: "Curated selection of global vintages.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-gourmet-dish-front-view_23-2148516905.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-gourmet-dish-front-view_23-2148516905.jpg?_wi=2"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -118,41 +92,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", name: "Truffle Risotto", price: "$32", imageSrc: "http://img.b2bpic.net/free-photo/white-plate-with-originally-served-salad-stands-dark-wooden-t_1304-4651.jpg?_wi=2"},
|
||||||
name: "Truffle Risotto",
|
|
||||||
price: "$32",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/white-plate-with-originally-served-salad-stands-dark-wooden-t_1304-4651.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", name: "Herb Crusted Steak", price: "$48", imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg?_wi=2"},
|
||||||
name: "Herb Crusted Steak",
|
|
||||||
price: "$48",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", name: "Pan Seared Sea Bass", price: "$42", imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=2"},
|
||||||
name: "Pan Seared Sea Bass",
|
|
||||||
price: "$42",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m4",
|
id: "m4", name: "Artisan Garden Salad", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg"},
|
||||||
name: "Artisan Garden Salad",
|
|
||||||
price: "$18",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m5",
|
id: "m5", name: "Chocolate Valrhona Mousse", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/cutting-biscuit-with-whipping-cream-berries-with-cutlery_114579-3648.jpg"},
|
||||||
name: "Chocolate Valrhona Mousse",
|
|
||||||
price: "$16",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cutting-biscuit-with-whipping-cream-berries-with-cutlery_114579-3648.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m6",
|
id: "m6", name: "Handmade Pappardelle", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/man-wearing-chef-attire_23-2151217206.jpg"},
|
||||||
name: "Handmade Pappardelle",
|
|
||||||
price: "$28",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-wearing-chef-attire_23-2151217206.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Chef's Signature Selections"
|
title="Chef's Signature Selections"
|
||||||
description="A curated list of our most popular dishes, perfected through years of culinary refinement."
|
description="A curated list of our most popular dishes, perfected through years of culinary refinement."
|
||||||
@@ -160,99 +110,40 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFive
|
<TestimonialCardThirteen
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
showRating={true}
|
||||||
|
animationType="slide-up"
|
||||||
|
title="Client Success Stories"
|
||||||
|
description="See how our web design expertise has transformed brands for our clients."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Jenkins", handle: "@sjenkins_design", testimonial: "The website design was top-tier, completely modernized our digital presence.", rating: 5,
|
||||||
name: "James Miller",
|
|
||||||
date: "March 2024",
|
|
||||||
title: "Food Critic",
|
|
||||||
quote: "The most refined culinary experience in the city.",
|
|
||||||
tag: "Dining",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/senior-woman-smiling-restaurant_23-2149316809.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg?_wi=2",
|
|
||||||
imageAlt: "elegant restaurant dining room atmosphere",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Michael Chen", handle: "@mchen_ventures", testimonial: "Professional, creative, and delivered ahead of schedule. Exceptional work.", rating: 5,
|
||||||
name: "Sophia Lee",
|
|
||||||
date: "February 2024",
|
|
||||||
title: "Guest",
|
|
||||||
quote: "Exceptional service and exquisite flavors.",
|
|
||||||
tag: "Event",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/waitress-serving-cup-coffee-customers_1170-653.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-gourmet-dish-front-view_23-2148516905.jpg?_wi=3",
|
|
||||||
imageAlt: "chef preparing gourmet meal",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Emily Rossi", handle: "@rossistudios", testimonial: "Absolutely thrilled with the new interface. User engagement has skyrocketed.", rating: 5,
|
||||||
name: "David Rossi",
|
|
||||||
date: "January 2024",
|
|
||||||
title: "Guest",
|
|
||||||
quote: "A perfect setting for our anniversary celebration.",
|
|
||||||
tag: "Celebration",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/adult-enjoying-cocktail_52683-107593.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/white-plate-with-originally-served-salad-stands-dark-wooden-t_1304-4651.jpg?_wi=3",
|
|
||||||
imageAlt: "gourmet appetizer plate",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t4",
|
|
||||||
name: "Elena Vance",
|
|
||||||
date: "January 2024",
|
|
||||||
title: "Guest",
|
|
||||||
quote: "Exceeded all expectations. Truly memorable.",
|
|
||||||
tag: "Dining",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-luxury-restaurant_23-2150598415.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beef-wrap-served-with-roasted-vegetables-spinach-teriyaki-sauce_140725-544.jpg?_wi=3",
|
|
||||||
imageAlt: "gourmet main course steak",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "t5",
|
|
||||||
name: "Marcus Stone",
|
|
||||||
date: "December 2023",
|
|
||||||
title: "Guest",
|
|
||||||
quote: "The wine pairings are simply outstanding.",
|
|
||||||
tag: "Dining",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/side-view-friends-enjoying-dinner-party_52683-132626.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-salmon-sauce-fried-eggplant_140725-2972.jpg?_wi=3",
|
|
||||||
imageAlt: "exquisite gourmet fish dish",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Guest Stories"
|
|
||||||
description="Discover what our guests love about their experiences at Cabra."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactFaq
|
<ContactSplitForm
|
||||||
animationType="slide-up"
|
title="Get in Touch"
|
||||||
useInvertedBackground={true}
|
description="Based in the heart of Chicago, we are ready to bring your digital projects to life. Reach out via the form below or contact us at (312) 555-0199 / info@cabra-design.com."
|
||||||
faqs={[
|
inputs={[
|
||||||
{
|
{ name: "name", type: "text", placeholder: "Your Name" },
|
||||||
id: "f1",
|
{ name: "email", type: "email", placeholder: "Your Email" }
|
||||||
title: "Do you offer vegan options?",
|
|
||||||
content: "Yes, we provide several plant-based options.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f2",
|
|
||||||
title: "Is parking available?",
|
|
||||||
content: "Valet parking is available every evening.",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "f3",
|
|
||||||
title: "Can I host private events?",
|
|
||||||
content: "We accommodate private events for up to 50 guests.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ctaTitle="Reservations"
|
textarea={{ name: "message", placeholder: "How can we help?" }}
|
||||||
ctaDescription="Join us for an unforgettable evening at Cabra. Book your table directly through our contact channel below."
|
useInvertedBackground={true}
|
||||||
ctaButton={{
|
mediaPosition="left"
|
||||||
text: "Contact Us",
|
imageSrc="http://img.b2bpic.net/free-photo/chef-preparing-gourmet-dish-front-view_23-2148516905.jpg?_wi=2"
|
||||||
href: "mailto:info@cabra-restaurant.com",
|
mediaAnimation="slide-up"
|
||||||
}}
|
|
||||||
ctaIcon={Phone}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -261,46 +152,33 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg?_wi=3"
|
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-table-assortment-with-plant_23-2148914895.jpg?_wi=3"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Visit Us",
|
title: "Visit Us", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "123 Gourmet Ave",
|
label: "Chicago, IL", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Follow",
|
title: "Follow", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Instagram",
|
label: "Instagram", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Facebook",
|
label: "Facebook", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Careers",
|
label: "Careers", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
logoText="Cabra"
|
logoText="Cabra"
|
||||||
copyrightText="© 2025 Cabra Restaurant. All rights reserved."
|
copyrightText="© 2025 Cabra Web Design. All rights reserved."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user