Merge version_2 into main #2
@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Lato } from "next/font/google";
|
||||
import { Cormorant_Garamond, Lato } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
@@ -20,11 +21,9 @@ export const metadata: Metadata = {
|
||||
},
|
||||
};
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"] });
|
||||
const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"] });
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -34,7 +33,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${lato.variable} antialiased`}>
|
||||
<body className={`${cormorantGaramond.variable} ${lato.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
261
src/app/page.tsx
261
src/app/page.tsx
@@ -29,284 +29,107 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Produits",
|
||||
id: "produits",
|
||||
},
|
||||
{
|
||||
name: "Paniers",
|
||||
id: "paniers",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Accueil", id: "hero" },
|
||||
{ name: "À propos", id: "about" },
|
||||
{ name: "Produits", id: "produits" },
|
||||
{ name: "Paniers", id: "paniers" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Great Saveurs"
|
||||
button={{
|
||||
text: "Prendre contact",
|
||||
href: "#contact",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Le meilleur du terroir, livré avec passion"
|
||||
description="Une sélection rigoureuse de produits régionaux artisanaux, directement des producteurs locaux à votre table."
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Great Saveurs, l'Épicerie Fine"
|
||||
description="L'excellence du terroir français sélectionnée pour les gourmets."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-basket-with-vegetables-garlics-onions-beet-light-background_140725-94827.jpg",
|
||||
alt: "Produits artisanaux",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/assorted-yummy-food-composition_23-2147930093.jpg",
|
||||
alt: "Assorted yummy food composition",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/dried-apricots-wooden-plate-spoons-with-juice-top-view-plaster-picnic-cloth_176474-9283.jpg",
|
||||
alt: "Dried apricots in wooden plate",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-honey-white-wooden-surface_1150-42243.jpg",
|
||||
alt: "Delicious honey on white wooden surface",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-chocolate-bars_23-2147787067.jpg",
|
||||
alt: "Delicious chocolate bars",
|
||||
},
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1qOSIyqpAJnVmTp8rS4p8ETfF/uploaded-1777545608060-62m531yz.jpg", alt: "Produits du terroir" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1qOSIyqpAJnVmTp8rS4p8ETfF/uploaded-1777545608060-ylvmeboi.jpg", alt: "Sélection gastronomique" },
|
||||
{ src: "https://img.b2bpic.net/free-photo/delicious-honey-white-wooden-surface_1150-42243.jpg", alt: "Miel artisanal" },
|
||||
{ src: "https://img.b2bpic.net/free-photo/dried-apricots-wooden-plate-spoons-with-juice-top-view-plaster-picnic-cloth_176474-9283.jpg", alt: "Produits secs" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Découvrir la gamme",
|
||||
href: "#produits",
|
||||
},
|
||||
{
|
||||
text: "Nous contacter",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "Voir la collection", href: "#produits" },
|
||||
{ text: "Nous contacter", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "100% Artisanal",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Livraison Rapide",
|
||||
icon: Truck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Produits Régionaux",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Qualité Garantie",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Paniers Sur-Mesure",
|
||||
icon: Gift,
|
||||
},
|
||||
{ type: "text-icon", text: "Sourcing direct", icon: MapPin },
|
||||
{ type: "text-icon", text: "Qualité artisanale", icon: Award },
|
||||
{ type: "text-icon", text: "Livraison soignée", icon: Truck },
|
||||
{ type: "text-icon", text: "Cadeaux gourmands", icon: Gift }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="bandeau" data-section="bandeau">
|
||||
<FeatureCardNineteen
|
||||
title="Notre Engagement"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
tag: "01",
|
||||
title: "Livraison",
|
||||
subtitle: "Sur commande",
|
||||
description: "Commandez vos produits en toute simplicité.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bakery_23-2148011524.jpg",
|
||||
imageAlt: "Bakery ",
|
||||
},
|
||||
{
|
||||
tag: "02",
|
||||
title: "Régional",
|
||||
subtitle: "100% Terroir",
|
||||
description: "Le meilleur des régions françaises.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-basket-with-vegetables-garlics-onions-beet-light-background_140725-94827.jpg",
|
||||
imageAlt: "Bakery ",
|
||||
},
|
||||
{
|
||||
tag: "03",
|
||||
title: "Artisanal",
|
||||
subtitle: "Savoir-faire",
|
||||
description: "Fabrication authentique par des artisans.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-baker-standing-with-arms-crossed_1170-2018.jpg",
|
||||
imageAlt: "Bakery ",
|
||||
},
|
||||
{
|
||||
tag: "04",
|
||||
title: "Sur-mesure",
|
||||
subtitle: "Paniers",
|
||||
description: "Compositions personnalisées pour vos cadeaux.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fruit-jam-bread_23-2148606865.jpg?_wi=1",
|
||||
imageAlt: "Bakery ",
|
||||
},
|
||||
{ tag: "Artisanat", title: "Savoir-faire unique", subtitle: "Authenticité", description: "Uniquement des producteurs locaux." },
|
||||
{ tag: "Qualité", title: "Terroir Français", subtitle: "Origine", description: "Le meilleur des régions au quotidien." },
|
||||
{ tag: "Service", title: "Sur-mesure", subtitle: "Compositions", description: "Des paniers uniques pour chaque occasion." }
|
||||
]}
|
||||
title="Engagement Great Saveurs"
|
||||
description="Qualité artisanale et authenticité française au cœur de notre démarche."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-baker-standing-with-arms-crossed_1170-2018.jpg",
|
||||
alt: "Franck Chatail",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
content: "Franck Chatail parcourt les régions de France pour vous proposer ce que les producteurs locaux font de mieux. Confitures, miels, biscuits artisanaux, chocolats, gazpachos — chaque produit est choisi pour sa qualité et son authenticité.",
|
||||
},
|
||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1qOSIyqpAJnVmTp8rS4p8ETfF/uploaded-1777545608060-ylvmeboi.jpg", alt: "L'épicerie fine" },
|
||||
{ type: "text", content: "Great Saveurs est né de la passion pour le terroir. Franck Chatail sélectionne pour vous des produits authentiques et rares, issus d'un savoir-faire traditionnel préservé dans chaque région de France." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="produits" data-section="produits">
|
||||
<ProductCardFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
title="Nos Produits"
|
||||
animationType="blur-reveal"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Confitures artisanales",
|
||||
price: "Sur demande",
|
||||
variant: "250g",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fruit-jam-bread_23-2148606865.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Miels de France",
|
||||
price: "Sur demande",
|
||||
variant: "500g",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173069.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Tablettes chocolat",
|
||||
price: "Sur demande",
|
||||
variant: "100g",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chocolate-brownies-kitchen-towel_114579-19047.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sablés fourrés",
|
||||
price: "Sur demande",
|
||||
variant: "200g",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waffle-bowl-cookies-white-surface-high-quality-photo_114579-35997.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Meringues artisanales",
|
||||
price: "Sur demande",
|
||||
variant: "100g",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-pink-macaroons-glass-cover_1304-4684.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Gazpacho & soupes",
|
||||
price: "Sur demande",
|
||||
variant: "500ml",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-lentils-soup-inside-plates-light-background-seed-plant-soup-color-food-dish-photo_140725-108883.jpg",
|
||||
},
|
||||
{ id: "1", name: "Confitures d'Antan", price: "à partir de 8€", variant: "250g", imageSrc: "https://img.b2bpic.net/free-photo/high-angle-fruit-jam-bread_23-2148606865.jpg" },
|
||||
{ id: "2", name: "Miels Sauvages", price: "à partir de 12€", variant: "500g", imageSrc: "https://img.b2bpic.net/free-photo/glass-jar-full-honey-with-honey-spoon_23-2148173069.jpg" },
|
||||
{ id: "3", name: "Tablettes Chocolat", price: "à partir de 6€", variant: "100g", imageSrc: "https://img.b2bpic.net/free-photo/chocolate-brownies-kitchen-towel_114579-19047.jpg" }
|
||||
]}
|
||||
title="Nos Produits Artisanaux"
|
||||
description="Une sélection raffinée de spécialités régionales."
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="paniers" data-section="paniers">
|
||||
<FeatureCardNineteen
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Nos Paniers Garnis"
|
||||
textboxLayout="split-description"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
tag: "Exemple",
|
||||
title: "Composition Signature",
|
||||
subtitle: "Un cadeau qui a du goût",
|
||||
description: "Mélangez nos meilleures confitures, chocolats, miels et sablés pour un cadeau inoubliable.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-breakfast-objects-fathers-day_23-2148098308.jpg",
|
||||
},
|
||||
{ tag: "Exclusif", title: "Coffret Signature", subtitle: "Plaisir partagé", description: "Composez vos paniers personnalisés selon vos envies et votre budget.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1qOSIyqpAJnVmTp8rS4p8ETfF/uploaded-1777545608060-62m531yz.jpg" }
|
||||
]}
|
||||
title="Paniers Garnis sur mesure"
|
||||
description="Pour cadeaux d'entreprise, mariages ou fêtes de fin d'année, créez des compositions personnalisées uniques avec nos produits artisanaux."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Contactez-nous"
|
||||
title="Vente sur commande directe"
|
||||
description="Franck Chatail est à votre écoute pour toute demande de commande ou conseil sur notre gamme de produits régionaux."
|
||||
tag="Contact"
|
||||
title="Commande sur mesure"
|
||||
description="Contactez Franck Chatail pour toute demande de coffret ou de produit spécifique."
|
||||
buttons={[
|
||||
{
|
||||
text: "Appeler : 07 84 55 81 49",
|
||||
href: "tel:0784558149",
|
||||
},
|
||||
{
|
||||
text: "Email : franck.chatail0475@orange.fr",
|
||||
href: "mailto:franck.chatail0475@orange.fr",
|
||||
},
|
||||
{ text: "07 84 55 81 49", href: "tel:0784558149" },
|
||||
{ text: "franck.chatail0475@orange.fr", href: "mailto:franck.chatail0475@orange.fr" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9aodwr"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1qOSIyqpAJnVmTp8rS4p8ETfF/uploaded-1777545608060-ylvmeboi.jpg"
|
||||
logoText="Great Saveurs"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{
|
||||
label: "Accueil",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "Produits",
|
||||
href: "#produits",
|
||||
},
|
||||
{
|
||||
label: "Paniers",
|
||||
href: "#paniers",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Produits", href: "#produits" }, { label: "Paniers", href: "#paniers" }, { label: "Contact", href: "#contact" }] }
|
||||
]}
|
||||
copyrightText="© 2025 Great Saveurs — Franck Chatail, commercial multicarte"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-lato), sans-serif;
|
||||
font-family: var(--font-cormorant), serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user