Merge version_1 into main #2
331
src/app/page.tsx
331
src/app/page.tsx
@@ -14,232 +14,127 @@ import { Fish, Sparkles } from "lucide-react";
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "L'Expérience",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Shintaro"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "hero" },
|
||||
{ name: "L'Expérience", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Shintaro"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
title="L'Art du Sushi à Nice"
|
||||
description="Une expérience gastronomique japonaise, où la précision rencontre le terroir niçois."
|
||||
buttons={[
|
||||
{
|
||||
text: "Réserver une table",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bf7EVzUh4l3eA5KHYuP8FyPQjW/uploaded-1774868218375-s1wuxn6p.png"
|
||||
imageAlt="Sushi traditionnel Shintaro"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/positive-gorgeous-young-female-feels-happy-coffee-shop_273609-2792.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-crazy-man-happy-expression_1194-1931.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-business-woman-break_23-2148317293.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/positive-gorgeous-young-female-feels-happy-coffee-shop_273609-2792.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Plus de 500 gourmets satisfaits"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Produits de saison",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Poisson frais",
|
||||
icon: Fish,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Tradition Michelin",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Ambiance chic",
|
||||
icon: Sparkles,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Service d'exception",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{ variant: "plain" }}
|
||||
title="L'Art du Sushi à Nice"
|
||||
description="Une expérience gastronomique japonaise, où la précision rencontre le terroir niçois."
|
||||
buttons={[{ text: "Réserver une table", href: "#contact" }]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bf7EVzUh4l3eA5KHYuP8FyPQjW/uploaded-1774868218375-s1wuxn6p.png"
|
||||
imageAlt="Sushi traditionnel Shintaro"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/positive-gorgeous-young-female-feels-happy-coffee-shop_273609-2792.jpg", alt: "Client 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg", alt: "Client 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-crazy-man-happy-expression_1194-1931.jpg", alt: "Client 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/front-view-business-woman-break_23-2148317293.jpg", alt: "Client 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/positive-gorgeous-young-female-feels-happy-coffee-shop_273609-2792.jpg", alt: "Client 5" },
|
||||
]}
|
||||
avatarText="Plus de 500 gourmets satisfaits"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Produits de saison" },
|
||||
{ type: "text-icon", text: "Poisson frais", icon: Fish },
|
||||
{ type: "text", text: "Tradition Michelin" },
|
||||
{ type: "text-icon", text: "Ambiance chic", icon: Sparkles },
|
||||
{ type: "text", text: "Service d'exception" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="L'excellence Michelin"
|
||||
description="Situé au cœur de Nice, Shintaro Suzuki propose un voyage sensoriel unique, récompensé par le Guide Michelin."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Savoir-faire",
|
||||
description: "Maîtrise technique des traditions japonaises.",
|
||||
},
|
||||
{
|
||||
title: "Produits frais",
|
||||
description: "Sélection rigoureuse des poissons de Méditerranée.",
|
||||
},
|
||||
{
|
||||
title: "Cadre intimiste",
|
||||
description: "Une atmosphère raffinée rue Gubernatis.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bf7EVzUh4l3eA5KHYuP8FyPQjW/uploaded-1774868218376-umm5d310.png?_wi=1"
|
||||
imageAlt="Chef Suzuki à l'œuvre"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="L'excellence Michelin"
|
||||
description="Situé au cœur de Nice, Shintaro Suzuki propose un voyage sensoriel unique, récompensé par le Guide Michelin."
|
||||
bulletPoints={[
|
||||
{ title: "Savoir-faire", description: "Maîtrise technique des traditions japonaises." },
|
||||
{ title: "Produits frais", description: "Sélection rigoureuse des poissons de Méditerranée." },
|
||||
{ title: "Cadre intimiste", description: "Une atmosphère raffinée rue Gubernatis." },
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bf7EVzUh4l3eA5KHYuP8FyPQjW/uploaded-1774868218376-umm5d310.png"
|
||||
imageAlt="Chef Suzuki à l'œuvre"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Assortiment Omakase",
|
||||
price: "Sur mesure",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi-is-plate-with-chopsticks-dipping-sauce-white-cement-floor_1150-22637.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Nigiri du jour",
|
||||
price: "35€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sushi_74190-4349.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Plateau Sashimi",
|
||||
price: "55€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sashimi_1203-9593.jpg",
|
||||
},
|
||||
]}
|
||||
title="Nos Créations"
|
||||
description="Découvrez nos menus dégustation et compositions du jour."
|
||||
/>
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Assortiment Omakase", price: "Sur mesure", imageSrc: "http://img.b2bpic.net/free-photo/sushi-is-plate-with-chopsticks-dipping-sauce-white-cement-floor_1150-22637.jpg" },
|
||||
{ id: "p2", name: "Nigiri du jour", price: "35€", imageSrc: "http://img.b2bpic.net/free-photo/sushi_74190-4349.jpg" },
|
||||
{ id: "p3", name: "Plateau Sashimi", price: "55€", imageSrc: "http://img.b2bpic.net/free-photo/sashimi_1203-9593.jpg" },
|
||||
]}
|
||||
title="Nos Créations"
|
||||
description="Découvrez nos menus dégustation et compositions du jour."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Jean Dupont",
|
||||
role: "Habitué",
|
||||
company: "Nice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-gorgeous-young-female-feels-happy-coffee-shop_273609-2792.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marie Martin",
|
||||
role: "Critique",
|
||||
company: "Gastronomie",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Paul Durand",
|
||||
role: "Fin Gourmet",
|
||||
company: "Paris",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-crazy-man-happy-expression_1194-1931.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Claire Morel",
|
||||
role: "Amateur",
|
||||
company: "Nice",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-woman-break_23-2148317293.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Thomas Petit",
|
||||
role: "Chef",
|
||||
company: "Cannes",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="La voix de nos clients"
|
||||
description="Une reconnaissance constante de la part des passionnés de haute gastronomie."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Jean Dupont", role: "Habitué", company: "Nice", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-gorgeous-young-female-feels-happy-coffee-shop_273609-2792.jpg" },
|
||||
{ id: "2", name: "Marie Martin", role: "Critique", company: "Gastronomie", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg" },
|
||||
{ id: "3", name: "Paul Durand", role: "Fin Gourmet", company: "Paris", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-crazy-man-happy-expression_1194-1931.jpg" },
|
||||
{ id: "4", name: "Claire Morel", role: "Amateur", company: "Nice", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-business-woman-break_23-2148317293.jpg" },
|
||||
{ id: "5", name: "Thomas Petit", role: "Chef", company: "Cannes", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-one-black-american-female-eats-gourmet-vegetarian-meal-drinks-wine-restaurant_613910-7365.jpg" },
|
||||
]}
|
||||
title="La voix de nos clients"
|
||||
description="Une reconnaissance constante de la part des passionnés de haute gastronomie."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Réservations"
|
||||
title="Contactez-nous"
|
||||
description="Réservez votre table rue Gubernatis pour une soirée exceptionnelle."
|
||||
mediaAnimation="blur-reveal"
|
||||
buttonText="Envoyer"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bf7EVzUh4l3eA5KHYuP8FyPQjW/uploaded-1774868218376-umm5d310.png?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Réservations"
|
||||
title="Contactez-nous"
|
||||
description="Réservez votre table rue Gubernatis pour une soirée exceptionnelle."
|
||||
mediaAnimation="blur-reveal"
|
||||
buttonText="Envoyer"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Bf7EVzUh4l3eA5KHYuP8FyPQjW/uploaded-1774868218376-umm5d310.png"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Shintaro Nice"
|
||||
copyrightText="© 2025 Shintaro. Tous droits réservés."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Shintaro Nice"
|
||||
copyrightText="© 2025 Shintaro. Tous droits réservés."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user