Files
f3c8a20c-0da1-47b1-923b-e2e…/src/app/vins/page.tsx
2026-03-03 17:34:49 +00:00

119 lines
4.3 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function WinesPage() {
const navItems = [
{ name: "Accueil", id: "home" },
{ name: "La Carte", id: "menu" },
{ name: "Les Vins", id: "wines" },
{ name: "Références", id: "awards" },
{ name: "Événements", id: "events" },
{ name: "Groupes & Traiteur", id: "groups" },
{ name: "Contact", id: "contact" },
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmallSizeLargeTitles"
background="noise"
cardStyle="gradient-bordered"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Le Resto"
navItems={navItems}
button={{ text: "Réserver maintenant", href: "tel:0466218012" }}
/>
</div>
<div id="wines-hero" data-section="wines-hero">
<HeroBillboard
title="Nos Vins Régionaux & Sélections"
description="Découvrez notre cave aux 150+ références. Vins du Gard, Côtes du Rhône et grands crus français sélectionnés avec passion."
background={{ variant: "noise" }}
tag="Terroir"
tagAnimation="slide-up"
buttons={[
{ text: "Réserver", href: "tel:0466218012" },
{ text: "Retour", href: "/" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/male-customer-holding-bottle-red-wine-close-up_169016-38810.jpg?_wi=3"
imageAlt="Sélection de vins"
mediaAnimation="slide-up"
/>
</div>
<div id="wines-selection" data-section="wines-selection">
<SocialProofOne
title="Nos Sélections de Vins"
description="Des vins régionaux et français choisis pour accompagner chaque moment gastronomique"
names={[
"Côtes du Rhône Classique",
"Châteauneuf-du-Pape",
"Vins Blancs du Gard",
"Rosés de Provence",
"Crus du Languedoc",
"Vins Rouges Puissants",
"Vins Doux Naturels",
"Champagne & Crémants",
]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
showCard={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/restaurant-interior_1127-3392.jpg?_wi=3"
imageAlt="Ambiance du restaurant Le Resto"
logoText="Le Resto"
copyrightText="© 2025 Le Resto - Tous droits réservés"
columns={[
{
title: "Restaurant",
items: [
{ label: "Accueil", href: "/" },
{ label: "La Carte", href: "/carte" },
{ label: "Les Vins", href: "/vins" },
{ label: "Réserver", href: "tel:0466218012" },
],
},
{
title: "Découvrir",
items: [
{ label: "Nos Références", href: "/references" },
{ label: "Événements", href: "/evenements" },
{ label: "Groupes & Traiteur", href: "/groupes-traiteur" },
{ label: "Actualités", href: "/#blog" },
],
},
{
title: "Contact",
items: [
{ label: "Adresse: 6 rue Saint-Thomas, 30000 Nîmes", href: "#" },
{ label: "Téléphone: 04 66 21 80 12", href: "tel:0466218012" },
{ label: "Mentions légales", href: "#" },
{ label: "Politique de confidentialité", href: "#" },
],
},
]}
/>
</div>
</ThemeProvider>
);
}