198 lines
10 KiB
TypeScript
198 lines
10 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
|
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
|
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="circleGradient"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="extrabold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
navItems={[
|
|
{ name: "Accueil", id: "hero" },
|
|
{ name: "À Propos", id: "about" },
|
|
{ name: "Menu", id: "menu" },
|
|
{ name: "Localisation", id: "location" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
brandName="Cantine Hurteau"
|
|
bottomLeftText="Sorel-Tracy, Québec"
|
|
bottomRightText="Réservations disponibles"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogoBillboardSplit
|
|
logoText="CANTINE HURTEAU"
|
|
description="Découvrez l'authenticité de la cuisine québécoise traditionnelle dans une ambiance chaleureuse et conviviale au cœur de Sorel-Tracy."
|
|
background={{ variant: "plain" }}
|
|
buttons={[
|
|
{ text: "Réserver une table", href: "#contact" },
|
|
{ text: "Voir le menu", href: "#menu" }
|
|
]}
|
|
layoutOrder="default"
|
|
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg"
|
|
imageAlt="Cantine Hurteau restaurant interior"
|
|
mediaAnimation="slide-up"
|
|
frameStyle="card"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SplitAbout
|
|
tag="Notre Histoire"
|
|
title="Bienvenue à la Cantine Hurteau"
|
|
description="Depuis des années, la Cantine Hurteau est un incontournable de Sorel-Tracy. Nous célébrons la cuisine québécoise authentique, préparée avec passion et des ingrédients locaux de qualité. Notre équipe dévouée s'engage à offrir une expérience gastronomique mémorable dans une atmosphère accueillante et familiale."
|
|
bulletPoints={[
|
|
{
|
|
title: "Cuisine Authentique", description: "Recettes traditionnelles québécoises préparées avec soin et ingrédients frais"
|
|
},
|
|
{
|
|
title: "Ambiance Chaleureuse", description: "Un décor invitant qui reflète le cœur et l'âme de nos traditions culinaires"
|
|
},
|
|
{
|
|
title: "Service Impeccable", description: "Notre équipe accueillante est dédiée à votre satisfaction et votre confort"
|
|
},
|
|
{
|
|
title: "Ingrédients Locaux", description: "Nous sourçons nos produits auprès de fournisseurs locaux de confiance"
|
|
}
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg"
|
|
imageAlt="Ambiance intérieure de la Cantine Hurteau"
|
|
mediaAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
imagePosition="right"
|
|
bulletTitleClassName="font-semibold text-lg"
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<FeatureCardMedia
|
|
title="Notre Menu Délicieux"
|
|
description="Découvrez notre sélection de plats savoureux qui mettent en valeur la meilleure cuisine québécoise"
|
|
tag="Spécialités"
|
|
features={[
|
|
{
|
|
id: "1", title: "Plats Principaux", description: "Nos plats signature préparés avec les meilleurs ingrédients locaux et traditionnels", tag: "Spécialité", imageSrc: "http://img.b2bpic.net/free-photo/side-view-roasted-chicken-served-with-wine-table_140725-12033.jpg", imageAlt: "Plat principal savoureux", buttons: [{ text: "En savoir plus", href: "#" }]
|
|
},
|
|
{
|
|
id: "2", title: "Desserts Gourmands", description: "Terminez votre repas avec nos desserts faits maison, une délicieuse conclusion à votre visite", tag: "Sucré", imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-delicious-cakes-with-cinnamon-grey-desk-sweet_140725-27756.jpg", imageAlt: "Dessert savoureux présentation", buttons: [{ text: "En savoir plus", href: "#" }]
|
|
},
|
|
{
|
|
id: "3", title: "Entrées Raffinées", description: "Commencez votre repas avec nos entrées délicates et savoureuses", tag: "Aperitif", imageSrc: "http://img.b2bpic.net/free-photo/delicious-bread-with-bacon-tomatoes_23-2148633471.jpg", imageAlt: "Entrée élégante présentation", buttons: [{ text: "En savoir plus", href: "#" }]
|
|
}
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="location" data-section="location">
|
|
<SplitAbout
|
|
tag="Nous Localiser"
|
|
title="Venez nous visiter à Sorel-Tracy"
|
|
description="La Cantine Hurteau est situé au cœur de Sorel-Tracy, facilement accessible pour une expérience gastronomique inoubliable. Nous sommes ouverts toute la semaine pour accueillir vos réservations et vos visites."
|
|
bulletPoints={[
|
|
{
|
|
title: "Adresse", description: "Cantine Hurteau, Sorel-Tracy, Québec"
|
|
},
|
|
{
|
|
title: "Horaires", description: "Lundi à dimanche - Consultez nos horaires d'ouverture"
|
|
},
|
|
{
|
|
title: "Stationnement", description: "Accès facile avec ample stationnement disponible"
|
|
},
|
|
{
|
|
title: "Accessibilité", description: "Restaurant accessible pour tous nos clients"
|
|
}
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/woman-s-hand-shows-something-touristic-map_8353-1637.jpg"
|
|
imageAlt="Localisation de la Cantine Hurteau à Sorel-Tracy"
|
|
mediaAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
imagePosition="left"
|
|
buttons={[
|
|
{ text: "Directions Google Maps", href: "#" },
|
|
{ text: "Appeler pour réserver", href: "#" }
|
|
]}
|
|
bulletTitleClassName="font-semibold text-lg"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSixteen
|
|
title="Ce que nos clients disent"
|
|
description="Découvrez les expériences positives de nos clients satisfaits qui reviennent régulièrement à la Cantine Hurteau"
|
|
tag="Témoignages"
|
|
testimonials={[
|
|
{
|
|
id: "1", name: "Marie Gagnon", role: "Client régulier", company: "Sorel-Tracy", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-friends-with-food_23-2149213379.jpg", imageAlt: "happy customer portrait smiling woman dining"
|
|
},
|
|
{
|
|
id: "2", name: "Pierre Desrochers", role: "Visiteur", company: "Région de Sorel", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-man-woman-having-dinner-together_23-2148454155.jpg", imageAlt: "satisfied customer man restaurant portrait smile"
|
|
},
|
|
{
|
|
id: "3", name: "Julie Marchand", role: "Famille", company: "Sorel-Tracy", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-taking-selfie_23-2149250086.jpg", imageAlt: "woman restaurant guest smiling satisfied portrait"
|
|
},
|
|
{
|
|
id: "4", name: "Jean-François Roy", role: "Ami", company: "Région", rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-woman-taking-food-photo_23-2149250048.jpg", imageAlt: "man at restaurant dinner happy satisfied smile"
|
|
}
|
|
]}
|
|
kpiItems={[
|
|
{ value: "20+", label: "Années de tradition" },
|
|
{ value: "500+", label: "Clients heureux par mois" },
|
|
{ value: "100%", label: "Satisfaction garantie" }
|
|
]}
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
tag="Contactez-nous"
|
|
title="Prêt à réserver votre table?"
|
|
description="Contactez la Cantine Hurteau pour faire une réservation ou pour en savoir plus sur nos services. Notre équipe accueillante est prête à vous servir."
|
|
buttons={[
|
|
{ text: "Réserver maintenant", href: "#" },
|
|
{ text: "Nous appeler", href: "tel:+1-819-XXXX-XXXX" }
|
|
]}
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="Cantine Hurteau"
|
|
copyrightText="© 2025 Cantine Hurteau | Tous droits réservés"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |