Merge version_1 into main #2
269
src/app/page.tsx
269
src/app/page.tsx
@@ -11,7 +11,7 @@ import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboa
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import { Award, Coffee, Cookie, Eye, Home, Lightbulb, Smile, Sparkles, Star, Utensils } from "lucide-react";
|
||||
import { Award, Coffee, Cookie, Eye, Home, Lightbulb, Smile, Sparkles, Star, Utensils, ChefHat } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,29 +32,17 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#home",
|
||||
},
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "#reviews",
|
||||
},
|
||||
name: "Reviews", id: "#reviews"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/food-badge-element-vector-set_53876-125663.jpg"
|
||||
logoAlt="Project Canelé logo"
|
||||
@@ -65,54 +53,31 @@ export default function LandingPage() {
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-animated",
|
||||
}}
|
||||
variant: "rotated-rays-animated"}}
|
||||
title="Project Canelé: Artisan Pastries & Cozy Vibes"
|
||||
description="Experience the art of baking with our freshly made canelés and delightful treats. Watch our pastry chefs craft perfection in our open kitchen."
|
||||
tag="Edinburgh's Favorite"
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Our Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "Explore Our Menu", href: "#menu"},
|
||||
{
|
||||
text: "Visit Us Today",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Visit Us Today", href: "#contact"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-roll-with-nuts-high-angle_23-2148904721.jpg?_wi=1",
|
||||
imageAlt: "Freshly baked canelés",
|
||||
},
|
||||
id: "1", imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-roll-with-nuts-high-angle_23-2148904721.jpg", imageAlt: "Freshly baked canelés"},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-milk-with-jar-biscuits-flour_114579-5769.jpg?_wi=1",
|
||||
imageAlt: "Open kitchen with bakers",
|
||||
},
|
||||
id: "2", imageSrc: "http://img.b2bpic.net/free-photo/cup-milk-with-jar-biscuits-flour_114579-5769.jpg", imageAlt: "Open kitchen with bakers"},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-people-antique-store_23-2149640700.jpg",
|
||||
imageAlt: "Coffee and canelés in cozy setting",
|
||||
},
|
||||
id: "3", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-people-antique-store_23-2149640700.jpg", imageAlt: "Coffee and canelés in cozy setting"},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-donut_23-2148468173.jpg",
|
||||
imageAlt: "Bright and cozy bakery interior",
|
||||
},
|
||||
id: "4", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cup-coffee-with-donut_23-2148468173.jpg", imageAlt: "Bright and cozy bakery interior"},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/patient-enjoying-free-time-after-chemotherapy-treatment_23-2149261143.jpg",
|
||||
imageAlt: "Friendly bakery staff smiling",
|
||||
},
|
||||
id: "5", imageSrc: "http://img.b2bpic.net/free-photo/patient-enjoying-free-time-after-chemotherapy-treatment_23-2149261143.jpg", imageAlt: "Friendly bakery staff smiling"},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-roll-with-blueberries-high-angle_23-2148904723.jpg",
|
||||
imageAlt: "Assortment of various baked pastries",
|
||||
},
|
||||
id: "6", imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-roll-with-blueberries-high-angle_23-2148904723.jpg", imageAlt: "Assortment of various baked pastries"},
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
@@ -126,19 +91,13 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{
|
||||
icon: Home,
|
||||
label: "Years in Business",
|
||||
value: "5+",
|
||||
},
|
||||
label: "Years in Business", value: "5+"},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Google Rating",
|
||||
value: "4.7 / 5",
|
||||
},
|
||||
label: "Google Rating", value: "4.7 / 5"},
|
||||
{
|
||||
icon: Cookie,
|
||||
label: "Canelés Baked Daily",
|
||||
value: "200+",
|
||||
},
|
||||
label: "Canelés Baked Daily", value: "200+"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -151,80 +110,53 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "See Your Pastries Made",
|
||||
description: "Our open kitchen at the front allows customers to see our pastries being made, adding to the atmosphere and transparency.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-female-cook-rolling-out-dough-with-flour-dark-surface_179666-44587.jpg",
|
||||
imageAlt: "Bakers working in an open kitchen",
|
||||
},
|
||||
title: "See Your Pastries Made", description: "Our open kitchen at the front allows customers to see our pastries being made, adding to the atmosphere and transparency.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-female-cook-rolling-out-dough-with-flour-dark-surface_179666-44587.jpg", imageAlt: "Bakers working in an open kitchen"},
|
||||
items: [
|
||||
{
|
||||
icon: ChefHat,
|
||||
text: "Artisan Craftsmanship",
|
||||
},
|
||||
text: "Artisan Craftsmanship"},
|
||||
{
|
||||
icon: Sparkles,
|
||||
text: "Fresh Ingredients",
|
||||
},
|
||||
text: "Fresh Ingredients"},
|
||||
{
|
||||
icon: Eye,
|
||||
text: "Live Baking Show",
|
||||
},
|
||||
text: "Live Baking Show"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/food-badge-element-vector-set_53876-125663.jpg",
|
||||
imageAlt: "baker hands making caneles dough",
|
||||
reverse: false
|
||||
},
|
||||
{
|
||||
title: "A Bright Yet Cozy Ambiance",
|
||||
description: "The space is bright yet cosy, with seating for those who want to enjoy their pastries with a coffee in a welcoming environment.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-celebrating-his-birthday_23-2149383225.jpg",
|
||||
imageAlt: "Friendly staff serving customers",
|
||||
},
|
||||
title: "A Bright Yet Cozy Ambiance", description: "The space is bright yet cosy, with seating for those who want to enjoy their pastries with a coffee in a welcoming environment.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-celebrating-his-birthday_23-2149383225.jpg", imageAlt: "Friendly staff serving customers"},
|
||||
items: [
|
||||
{
|
||||
icon: Coffee,
|
||||
text: "Relaxing Seating",
|
||||
},
|
||||
text: "Relaxing Seating"},
|
||||
{
|
||||
icon: Lightbulb,
|
||||
text: "Inviting Decor",
|
||||
},
|
||||
text: "Inviting Decor"},
|
||||
{
|
||||
icon: Smile,
|
||||
text: "Friendly Service",
|
||||
},
|
||||
text: "Friendly Service"},
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cinnamon-roll-with-nuts-high-angle_23-2148904721.jpg?_wi=2",
|
||||
imageAlt: "baker hands making caneles dough",
|
||||
reverse: true
|
||||
},
|
||||
{
|
||||
title: "Beautiful Details",
|
||||
description: "Laurens Willis noted, 'The small plates and mugs are beautiful, well matched to the vibe,' enhancing your dining experience.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hot-latte-art-coffee-cup-wood-table-coffee-shop_1150-8936.jpg",
|
||||
imageAlt: "Beautiful small plates and mugs",
|
||||
},
|
||||
title: "Beautiful Details", description: "Laurens Willis noted, 'The small plates and mugs are beautiful, well matched to the vibe,' enhancing your dining experience.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hot-latte-art-coffee-cup-wood-table-coffee-shop_1150-8936.jpg", imageAlt: "Beautiful small plates and mugs"},
|
||||
items: [
|
||||
{
|
||||
icon: Award,
|
||||
text: "Aesthetic Presentation",
|
||||
},
|
||||
text: "Aesthetic Presentation"},
|
||||
{
|
||||
icon: Star,
|
||||
text: "Curated Tableware",
|
||||
},
|
||||
text: "Curated Tableware"},
|
||||
{
|
||||
icon: Utensils,
|
||||
text: "Perfect Pairing",
|
||||
},
|
||||
text: "Perfect Pairing"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cup-milk-with-jar-biscuits-flour_114579-5769.jpg?_wi=2",
|
||||
imageAlt: "baker hands making caneles dough",
|
||||
},
|
||||
reverse: false
|
||||
}
|
||||
]}
|
||||
title="The Project Canelé Experience"
|
||||
description="More than just a bakery, it's a sensory journey that delights with every visit."
|
||||
@@ -239,47 +171,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Classic Canelé",
|
||||
price: "£2.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/green-plate-round-sweet-cookies-with-dried-oranges-christmas-balls_114579-56299.jpg",
|
||||
imageAlt: "Classic Canelé",
|
||||
},
|
||||
id: "p1", name: "Classic Canelé", price: "£2.50", imageSrc: "http://img.b2bpic.net/free-photo/green-plate-round-sweet-cookies-with-dried-oranges-christmas-balls_114579-56299.jpg", imageAlt: "Classic Canelé"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Chocolate Canelé",
|
||||
price: "£2.80",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-chocolate-cakes-pink_140725-78336.jpg",
|
||||
imageAlt: "Chocolate Canelé",
|
||||
},
|
||||
id: "p2", name: "Chocolate Canelé", price: "£2.80", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-chocolate-cakes-pink_140725-78336.jpg", imageAlt: "Chocolate Canelé"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Vanilla Bean Canelé",
|
||||
price: "£2.80",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raisin-bread_1339-4544.jpg",
|
||||
imageAlt: "Vanilla Bean Canelé",
|
||||
},
|
||||
id: "p3", name: "Vanilla Bean Canelé", price: "£2.80", imageSrc: "http://img.b2bpic.net/free-photo/raisin-bread_1339-4544.jpg", imageAlt: "Vanilla Bean Canelé"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Raspberry Canelé",
|
||||
price: "£3.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-delicious-raspberry-cake-roll_114579-62633.jpg",
|
||||
imageAlt: "Raspberry Canelé",
|
||||
},
|
||||
id: "p4", name: "Raspberry Canelé", price: "£3.00", imageSrc: "http://img.b2bpic.net/free-photo/homemade-delicious-raspberry-cake-roll_114579-62633.jpg", imageAlt: "Raspberry Canelé"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Flaky Croissant",
|
||||
price: "£3.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-croissants-table_140725-733.jpg",
|
||||
imageAlt: "Flaky Croissant",
|
||||
},
|
||||
id: "p5", name: "Flaky Croissant", price: "£3.00", imageSrc: "http://img.b2bpic.net/free-photo/fresh-croissants-table_140725-733.jpg", imageAlt: "Flaky Croissant"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Artisan Sourdough",
|
||||
price: "£4.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bakery_23-2148011503.jpg",
|
||||
imageAlt: "Artisan Sourdough Bread",
|
||||
},
|
||||
id: "p6", name: "Artisan Sourdough", price: "£4.50", imageSrc: "http://img.b2bpic.net/free-photo/bakery_23-2148011503.jpg", imageAlt: "Artisan Sourdough Bread"},
|
||||
]}
|
||||
title="Our Signature Canelés & Baked Treats"
|
||||
description="Handcrafted daily with the finest ingredients, each bite is a taste of perfection."
|
||||
@@ -294,25 +196,15 @@ export default function LandingPage() {
|
||||
author="Daryl Monserrate"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-african-man-smiling-stretching-hands-camera_176420-12616.jpg",
|
||||
alt: "Daryl Monserrate",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/happy-african-man-smiling-stretching-hands-camera_176420-12616.jpg", alt: "Daryl Monserrate"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-latin-man-wearing-casual-clothes-depressed-worry-distress-crying-angry-afraid-sad-expression_839833-19093.jpg",
|
||||
alt: "George",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-latin-man-wearing-casual-clothes-depressed-worry-distress-crying-angry-afraid-sad-expression_839833-19093.jpg", alt: "George"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/african-american-girl-posing-with-sincere-smile-studio-shot-cheerful-curly-young-woman-isolated-beige-background_197531-28951.jpg",
|
||||
alt: "Laurens Willis",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/african-american-girl-posing-with-sincere-smile-studio-shot-cheerful-curly-young-woman-isolated-beige-background_197531-28951.jpg", alt: "Laurens Willis"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-trying-listening-some-sound_1187-3768.jpg",
|
||||
alt: "Satisfied Customer",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/woman-trying-listening-some-sound_1187-3768.jpg", alt: "Satisfied Customer"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-caucasian-man-black-t-shirt-rejoices-isolated-grey-wall_132075-8173.jpg",
|
||||
alt: "Happy Customer",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-caucasian-man-black-t-shirt-rejoices-isolated-grey-wall_132075-8173.jpg", alt: "Happy Customer"},
|
||||
]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -325,20 +217,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "faq1",
|
||||
title: "What are your opening hours?",
|
||||
content: "Project Canelé is closed on Tuesdays and opens at 9 AM on Wednesdays. Please check our contact section for full details.",
|
||||
},
|
||||
id: "faq1", title: "What are your opening hours?", content: "Project Canelé is closed on Tuesdays and opens at 9 AM on Wednesdays. Please check our contact section for full details."},
|
||||
{
|
||||
id: "faq2",
|
||||
title: "Do you offer custom orders for events?",
|
||||
content: "Yes, we do! For custom orders or catering inquiries, please contact us directly via phone or email. We'd love to make your event special.",
|
||||
},
|
||||
id: "faq2", title: "Do you offer custom orders for events?", content: "Yes, we do! For custom orders or catering inquiries, please contact us directly via phone or email. We'd love to make your event special."},
|
||||
{
|
||||
id: "faq3",
|
||||
title: "What is a Canelé?",
|
||||
content: "A Canelé is a small French pastry flavored with rum and vanilla with a soft and tender custard center and a dark, thick caramelized crust. It's our specialty!",
|
||||
},
|
||||
id: "faq3", title: "What is a Canelé?", content: "A Canelé is a small French pastry flavored with rum and vanilla with a soft and tender custard center and a dark, thick caramelized crust. It's our specialty!"},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to your most common questions about Project Canelé."
|
||||
@@ -350,17 +233,14 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Visit Us"
|
||||
tagAnimation="slide-up"
|
||||
title="Find Your Way to Freshly Baked Delights"
|
||||
description="Project Canelé is located at 150 Dundas St, Edinburgh EH3 5DQ. We can't wait to welcome you!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://www.google.com/maps/dir/?api=1&destination=150+Dundas+St,+Edinburgh+EH3+5DQ",
|
||||
},
|
||||
text: "Get Directions", href: "https://www.google.com/maps/dir/?api=1&destination=150+Dundas+St,+Edinburgh+EH3+5DQ"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -371,50 +251,31 @@ export default function LandingPage() {
|
||||
logoText="Project Canelé"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#home",
|
||||
},
|
||||
label: "Home", href: "#home"},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Menu", href: "#menu"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#reviews",
|
||||
},
|
||||
label: "Reviews", href: "#reviews"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "150 Dundas St, Edinburgh EH3 5DQ",
|
||||
href: "https://www.google.com/maps/place/150+Dundas+St,+Edinburgh+EH3+5DQ",
|
||||
},
|
||||
label: "150 Dundas St, Edinburgh EH3 5DQ", href: "https://www.google.com/maps/place/150+Dundas+St,+Edinburgh+EH3+5DQ"},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://www.instagram.com/projectcanele/",
|
||||
},
|
||||
label: "Instagram", href: "https://www.instagram.com/projectcanele/"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
title: "Hours", items: [
|
||||
{
|
||||
label: "Mon-Tue: Closed",
|
||||
href: "#",
|
||||
},
|
||||
label: "Mon-Tue: Closed", href: "#"},
|
||||
{
|
||||
label: "Wed-Sun: 9 AM - 5 PM",
|
||||
href: "#",
|
||||
},
|
||||
label: "Wed-Sun: 9 AM - 5 PM", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user