Update src/app/page.tsx
This commit is contained in:
227
src/app/page.tsx
227
src/app/page.tsx
@@ -32,40 +32,22 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Treats",
|
||||
id: "#products",
|
||||
},
|
||||
{
|
||||
name: "Stories",
|
||||
id: "#blog",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Treats", id: "products" },
|
||||
{ name: "Stories", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Patisserie Faraya"
|
||||
button={{ text: "Order Now", href: "#products" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Artisanal Perfection, Baked Fresh Daily."
|
||||
description="Experience the timeless craft of French baking at Patisserie Faraya. Every pastry, bread, and dessert is prepared with love and the finest ingredients."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Our Treats",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Explore Our Treats", href: "#products" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-bike-with-flowers-basket_23-2150814848.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -91,59 +73,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Patisserie",
|
||||
name: "Classic Croissant",
|
||||
price: "$4.50",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-fruit-tart-plate_23-2148519066.jpg",
|
||||
},
|
||||
id: "1", brand: "Patisserie", name: "Classic Croissant", price: "$4.50", rating: 5,
|
||||
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fruit-tart-plate_23-2148519066.jpg"},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Patisserie",
|
||||
name: "Chocolate Éclair",
|
||||
price: "$5.25",
|
||||
rating: 5,
|
||||
reviewCount: "95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chocolate-eclairs-white-oval-plate-fir-tree-branches-cones-christmas-toys-fork-cinnamon-cup-tea-chopping-board-dark-wooden-table_140725-90875.jpg",
|
||||
},
|
||||
id: "2", brand: "Patisserie", name: "Chocolate Éclair", price: "$5.25", rating: 5,
|
||||
reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chocolate-eclairs-white-oval-plate-fir-tree-branches-cones-christmas-toys-fork-cinnamon-cup-tea-chopping-board-dark-wooden-table_140725-90875.jpg"},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Patisserie",
|
||||
name: "Fruit Tart",
|
||||
price: "$6.00",
|
||||
rating: 4,
|
||||
reviewCount: "82",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fruity-birthday-cake-with-birthday-topper-fruits-top-white-drip-beige-background_181624-45974.jpg",
|
||||
},
|
||||
id: "3", brand: "Patisserie", name: "Fruit Tart", price: "$6.00", rating: 4,
|
||||
reviewCount: "82", imageSrc: "http://img.b2bpic.net/free-photo/fruity-birthday-cake-with-birthday-topper-fruits-top-white-drip-beige-background_181624-45974.jpg"},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Patisserie",
|
||||
name: "Macaron Selection",
|
||||
price: "$12.00",
|
||||
rating: 5,
|
||||
reviewCount: "210",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-tarts-dried-oranges-leaves-dried-flower-branch-dark-surface_140725-90995.jpg",
|
||||
},
|
||||
id: "4", brand: "Patisserie", name: "Macaron Selection", price: "$12.00", rating: 5,
|
||||
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/top-view-different-tarts-dried-oranges-leaves-dried-flower-branch-dark-surface_140725-90995.jpg"},
|
||||
{
|
||||
id: "5",
|
||||
brand: "Patisserie",
|
||||
name: "Mille-Feuille",
|
||||
price: "$6.50",
|
||||
rating: 5,
|
||||
reviewCount: "145",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-plate-jam-background-healthy_1203-5151.jpg",
|
||||
},
|
||||
id: "5", brand: "Patisserie", name: "Mille-Feuille", price: "$6.50", rating: 5,
|
||||
reviewCount: "145", imageSrc: "http://img.b2bpic.net/free-photo/food-plate-jam-background-healthy_1203-5151.jpg"},
|
||||
{
|
||||
id: "6",
|
||||
brand: "Patisserie",
|
||||
name: "Fresh Brioche",
|
||||
price: "$3.75",
|
||||
rating: 4,
|
||||
reviewCount: "67",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-homemade-pastry-sweet-jam_23-2148516559.jpg",
|
||||
},
|
||||
id: "6", brand: "Patisserie", name: "Fresh Brioche", price: "$3.75", rating: 4,
|
||||
reviewCount: "67", imageSrc: "http://img.b2bpic.net/free-photo/tasty-homemade-pastry-sweet-jam_23-2148516559.jpg"},
|
||||
]}
|
||||
title="Signature Delicacies"
|
||||
description="Hand-crafted pastries and desserts, prepared fresh in our kitchen every morning."
|
||||
@@ -156,24 +102,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
icon: Award,
|
||||
title: "Awards Won",
|
||||
value: "15",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
icon: Coffee,
|
||||
title: "Cups Served",
|
||||
value: "500k+",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
icon: Smile,
|
||||
title: "Happy Guests",
|
||||
value: "1M+",
|
||||
},
|
||||
{ id: "1", icon: Award, title: "Awards Won", value: "15" },
|
||||
{ id: "2", icon: Coffee, title: "Cups Served", value: "500k+" },
|
||||
{ id: "3", icon: Smile, title: "Happy Guests", value: "1M+" },
|
||||
]}
|
||||
title="Our Passion in Numbers"
|
||||
description="Three decades of baking excellence and satisfied sweet-toothed guests."
|
||||
@@ -187,26 +118,11 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="Sarah M."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/curly-girl-with-beatiful-smile-keeping-cup-coffee-looking-camera_7502-9179.jpg",
|
||||
alt: "Sarah M.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg",
|
||||
alt: "Michael T.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-hands-holding-black-plate-with-green-spinach-humus-with-brown-rice-shrimps_140725-12901.jpg",
|
||||
alt: "Elena R.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/father-son-drinking-coffee-together_23-2148351721.jpg",
|
||||
alt: "David K.",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/funny-women-with-pastry_23-2147770109.jpg",
|
||||
alt: "Chloe L.",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/curly-girl-with-beatiful-smile-keeping-cup-coffee-looking-camera_7502-9179.jpg", alt: "Sarah M." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg", alt: "Michael T." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/side-view-hands-holding-black-plate-with-green-spinach-humus-with-brown-rice-shrimps_140725-12901.jpg", alt: "Elena R." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/father-son-drinking-coffee-together_23-2148351721.jpg", alt: "David K." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/funny-women-with-pastry_23-2147770109.jpg", alt: "Chloe L." },
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -218,21 +134,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer gluten-free options?",
|
||||
content: "Yes, we have a selection of gluten-friendly treats, though we bake in a shared kitchen.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Can I place custom orders?",
|
||||
content: "Absolutely! Contact us at least 48 hours in advance for custom cakes or catering.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Where do you source your ingredients?",
|
||||
content: "We source high-quality butter and flour from regional farms and specialty importers.",
|
||||
},
|
||||
{ id: "1", title: "Do you offer gluten-free options?", content: "Yes, we have a selection of gluten-friendly treats, though we bake in a shared kitchen." },
|
||||
{ id: "2", title: "Can I place custom orders?", content: "Absolutely! Contact us at least 48 hours in advance for custom cakes or catering." },
|
||||
{ id: "3", title: "Where do you source your ingredients?", content: "We source high-quality butter and flour from regional farms and specialty importers." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Common inquiries about our baking process and availability."
|
||||
@@ -249,35 +153,11 @@ export default function LandingPage() {
|
||||
description="Insights, recipes, and seasonal highlights from our kitchen."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Recipes",
|
||||
title: "The Art of Lamination",
|
||||
excerpt: "Behind the scenes of our signature croissant process.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-choco-eclairs-with-cookies-dark-background_140725-91666.jpg",
|
||||
authorName: "Chef Julien",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/woman-standing-with-arms-crossed-kitchen_107420-12355.jpg",
|
||||
date: "Oct 12, 2024",
|
||||
},
|
||||
id: "b1", category: "Recipes", title: "The Art of Lamination", excerpt: "Behind the scenes of our signature croissant process.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-choco-eclairs-with-cookies-dark-background_140725-91666.jpg", authorName: "Chef Julien", authorAvatar: "http://img.b2bpic.net/free-photo/woman-standing-with-arms-crossed-kitchen_107420-12355.jpg", date: "Oct 12, 2024"},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Seasonal",
|
||||
title: "Autumn Flavors",
|
||||
excerpt: "Introducing our pumpkin spice and walnut collection.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-close-view-cake-with-cornel-fruit-raspberry-chocolate-dark-wooden-background_140725-91446.jpg",
|
||||
authorName: "Chef Marie",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/woman-smiles-while-eating-cake-drinking-coffee-wearing-headphone-that-connect-tablet-gadget_496169-1109.jpg",
|
||||
date: "Sept 28, 2024",
|
||||
},
|
||||
id: "b2", category: "Seasonal", title: "Autumn Flavors", excerpt: "Introducing our pumpkin spice and walnut collection.", imageSrc: "http://img.b2bpic.net/free-photo/bottom-close-view-cake-with-cornel-fruit-raspberry-chocolate-dark-wooden-background_140725-91446.jpg", authorName: "Chef Marie", authorAvatar: "http://img.b2bpic.net/free-photo/woman-smiles-while-eating-cake-drinking-coffee-wearing-headphone-that-connect-tablet-gadget_496169-1109.jpg", date: "Sept 28, 2024"},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Guide",
|
||||
title: "Perfect Coffee Pairings",
|
||||
excerpt: "Which coffee goes best with our signature éclair?",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cake-with-cream-inside-plate-with-fresh-sliced-strawberries-tea-blue-grey-background-cookie-biscuit-cake-fruit-sugar-tea_140725-22864.jpg",
|
||||
authorName: "Chef Julien",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/happy-young-lady-posing-while-eating-cupcakes_171337-14514.jpg",
|
||||
date: "Aug 15, 2024",
|
||||
},
|
||||
id: "b3", category: "Guide", title: "Perfect Coffee Pairings", excerpt: "Which coffee goes best with our signature éclair?", imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cake-with-cream-inside-plate-with-fresh-sliced-strawberries-tea-blue-grey-background-cookie-biscuit-cake-fruit-sugar-tea_140725-22864.jpg", authorName: "Chef Julien", authorAvatar: "http://img.b2bpic.net/free-photo/happy-young-lady-posing-while-eating-cupcakes_171337-14514.jpg", date: "Aug 15, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -285,16 +165,9 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Have a special occasion coming up? We would love to bake for your celebration. Get in touch with our team today."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "mailto:hello@patisseriefaraya.com",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Contact Us", href: "mailto:hello@patisseriefaraya.com" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -303,36 +176,12 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-delicious-creamy-cake-with-chocolate-raisins-light-dark-background_140725-136318.jpg"
|
||||
logoText="Patisserie Faraya"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user