Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
215
src/app/page.tsx
215
src/app/page.tsx
@@ -28,26 +28,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Histoire",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Spécialités",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Avis",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Accueil", id: "hero" },
|
||||
{ name: "Histoire", id: "about" },
|
||||
{ name: "Spécialités", id: "features" },
|
||||
{ name: "Avis", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Akharouid"
|
||||
/>
|
||||
@@ -55,79 +40,33 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Le savoir-faire traditionnel de père en fils au cœur de Maurepas"
|
||||
description="Chaque jour, nous pétrissons avec passion des pains frais croustillants et des pâtisseries maison gourmandes. Goûtez la différence du fait-maison."
|
||||
kpis={[
|
||||
{
|
||||
value: "100%",
|
||||
label: "Fait maison",
|
||||
},
|
||||
{
|
||||
value: "Frais",
|
||||
label: "Quotidien",
|
||||
},
|
||||
{
|
||||
value: "Local",
|
||||
label: "Square du Maine",
|
||||
},
|
||||
{ value: "100%", label: "Fait maison" },
|
||||
{ value: "Frais", label: "Quotidien" },
|
||||
{ value: "Local", label: "Square du Maine" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Découvrir nos horaires & spécialités",
|
||||
href: "#features",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Découvrir nos horaires & spécialités", href: "#features" }]}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delicious-chocolate-sponge-cakes_1122-1369.jpg"
|
||||
imageAlt="boulangerie artisanale pain traditionnel"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg",
|
||||
alt: "Waitress offering macarons",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/jars-with-cookies_23-2147787045.jpg",
|
||||
alt: "Jars with cookies",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/glass-showcase-pastry-shop-with-variety-fresh-cakes-pastries-popular-sweet-desserts-offered-sale_639032-1341.jpg",
|
||||
alt: "Glass showcase of pastry shop",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/thoughtful-young-young-woman-choosing-pastries_171337-16951.jpg",
|
||||
alt: "Thoughtful woman choosing pastries",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-chocolate-sponge-cakes_1122-1369.jpg",
|
||||
alt: "boulangerie artisanale pain",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg", alt: "Waitress offering macarons" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/jars-with-cookies_23-2147787045.jpg", alt: "Jars with cookies" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/glass-showcase-pastry-shop-with-variety-fresh-cakes-pastries-popular-sweet-desserts-offered-sale_639032-1341.jpg", alt: "Glass showcase of pastry shop" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/thoughtful-young-young-woman-choosing-pastries_171337-16951.jpg", alt: "Thoughtful woman choosing pastries" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/delicious-chocolate-sponge-cakes_1122-1369.jpg", alt: "boulangerie artisanale pain" },
|
||||
]}
|
||||
avatarText="Rejoignez nos centaines de clients fidèles"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisanal",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Local",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Passion",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tradition",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Qualité",
|
||||
},
|
||||
{ type: "text", text: "Artisanal" },
|
||||
{ type: "text", text: "Local" },
|
||||
{ type: "text", text: "Passion" },
|
||||
{ type: "text", text: "Tradition" },
|
||||
{ type: "text", text: "Qualité" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -135,14 +74,7 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Une transmission de génération en génération",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-woman-kitchen-holding-cute-white-maltese-dog_1153-9896.jpg"
|
||||
imageAlt="artisan boulanger père et fils"
|
||||
heading={[{ type: "text", content: "Une transmission de génération en génération" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -152,26 +84,10 @@ export default function LandingPage() {
|
||||
title="Nos Spécialités Artisanales"
|
||||
description="Découvrez le fruit de notre travail quotidien : des produits réalisés avec les meilleurs ingrédients et tout notre amour du métier."
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Pains Artisanaux",
|
||||
content: "Baguettes de tradition, pains au levain naturel et pains spéciaux pétris avec expertise.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Viennoiseries Pur Beurre",
|
||||
content: "Croissants dorés, pains au chocolat feuilletés et brioches fondantes.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Pâtisseries Fines",
|
||||
content: "Gâteaux d'exception, éclairs généreux et douceurs sucrées pour vos événements.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Snacking Maison",
|
||||
content: "Sandwichs préparés sur place chaque matin et quiches savoureuses pour une pause déjeuner idéale.",
|
||||
},
|
||||
{ id: "1", title: "Pains Artisanaux", content: "Baguettes de tradition, pains au levain naturel et pains spéciaux pétris avec expertise." },
|
||||
{ id: "2", title: "Viennoiseries Pur Beurre", content: "Croissants dorés, pains au chocolat feuilletés et brioches fondantes." },
|
||||
{ id: "3", title: "Pâtisseries Fines", content: "Gâteaux d'exception, éclairs généreux et douceurs sucrées pour vos événements." },
|
||||
{ id: "4", title: "Snacking Maison", content: "Sandwichs préparés sur place chaque matin et quiches savoureuses pour une pause déjeuner idéale." },
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-baker-s-hand-kneading-dough-bread_23-2147872762.jpg"
|
||||
@@ -185,46 +101,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sophie M.",
|
||||
handle: "Habituée du quartier",
|
||||
testimonial: "La meilleure baguette du quartier ! L'accueil est toujours chaleureux.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handful-flour-with-egg-rustic-kitchen-against-background-men-s-hands-knead-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-467.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Thomas L.",
|
||||
handle: "Fan de viennoiseries",
|
||||
testimonial: "Les croissants pur beurre sont incroyables, on sent la qualité du travail réalisé.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-putting-whole-homemade-bread-with-hands-brown-towel-flour-bread_114579-2633.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Marie C.",
|
||||
handle: "Cliente fidèle",
|
||||
testimonial: "Un grand bravo pour les éclairs au chocolat, un vrai régal à chaque passage.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-cutting-slices-into-bread-dough_23-2148742226.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Julien P.",
|
||||
handle: "Pause déjeuner",
|
||||
testimonial: "Mes sandwichs du midi préférés à Maurepas. Produits frais et toujours bien garnis.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Claire D.",
|
||||
handle: "Famille",
|
||||
testimonial: "Le pain se garde parfaitement, une vraie boulangerie artisanale comme on les aime.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/jars-with-cookies_23-2147787045.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sophie M.", handle: "Habituée du quartier", testimonial: "La meilleure baguette du quartier ! L'accueil est toujours chaleureux.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handful-flour-with-egg-rustic-kitchen-against-background-men-s-hands-knead-dough-ingredients-cooking-flour-products-dough-bread-muffins-pie-pizza-dough-copy-space_639032-467.jpg" },
|
||||
{ id: "2", name: "Thomas L.", handle: "Fan de viennoiseries", testimonial: "Les croissants pur beurre sont incroyables, on sent la qualité du travail réalisé.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-putting-whole-homemade-bread-with-hands-brown-towel-flour-bread_114579-2633.jpg" },
|
||||
{ id: "3", name: "Marie C.", handle: "Cliente fidèle", testimonial: "Un grand bravo pour les éclairs au chocolat, un vrai régal à chaque passage.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/chef-cutting-slices-into-bread-dough_23-2148742226.jpg" },
|
||||
{ id: "4", name: "Julien P.", handle: "Pause déjeuner", testimonial: "Mes sandwichs du midi préférés à Maurepas. Produits frais et toujours bien garnis.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/waitress-offering-macarons_23-2147985067.jpg" },
|
||||
{ id: "5", name: "Claire D.", handle: "Famille", testimonial: "Le pain se garde parfaitement, une vraie boulangerie artisanale comme on les aime.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/jars-with-cookies_23-2147787045.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Ils parlent de nous"
|
||||
@@ -235,13 +116,10 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact"
|
||||
title="Retrouvez-nous au Square du Maine"
|
||||
description="Nous sommes ouverts du mardi au dimanche pour vous servir. Venez découvrir nos créations artisanales !"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/glass-showcase-pastry-shop-with-variety-fresh-cakes-pastries-popular-sweet-desserts-offered-sale_639032-1341.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -249,33 +127,16 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Boulangerie Akharouid",
|
||||
items: [
|
||||
{
|
||||
label: "Square du Maine, Maurepas",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Tél: 01 23 45 67 89",
|
||||
href: "tel:0123456789",
|
||||
},
|
||||
title: "Boulangerie Akharouid", items: [
|
||||
{ label: "Square du Maine, Maurepas", href: "#contact" },
|
||||
{ label: "Tél: 01 23 45 67 89", href: "tel:0123456789" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Horaires",
|
||||
items: [
|
||||
{
|
||||
label: "Mar-Ven: 07h00 - 19h30",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Sam-Dim: 07h30 - 13h00",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Lundi: Fermé",
|
||||
href: "#",
|
||||
},
|
||||
title: "Horaires", items: [
|
||||
{ label: "Mar-Ven: 07h00 - 19h30", href: "#" },
|
||||
{ label: "Sam-Dim: 07h30 - 13h00", href: "#" },
|
||||
{ label: "Lundi: Fermé", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user