Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -24,20 +24,13 @@ export default function GalleryPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil", id: "/"},
|
||||
{
|
||||
name: "À Propos", id: "/about"},
|
||||
{
|
||||
name: "Services", id: "/#services"},
|
||||
{
|
||||
name: "Galerie", id: "/#gallery"},
|
||||
{
|
||||
name: "Témoignages", id: "/#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "/#faq"},
|
||||
{
|
||||
name: "Contact", id: "/#contact"},
|
||||
{ name: "Accueil", id: "/"},
|
||||
{ name: "À Propos", id: "/about"},
|
||||
{ name: "Services", id: "/services"},
|
||||
{ name: "Galerie", id: "/gallery"},
|
||||
{ name: "Témoignages", id: "/#testimonials"},
|
||||
{ name: "FAQ", id: "/#faq"},
|
||||
{ name: "Contact", id: "/#contact"},
|
||||
]}
|
||||
brandName="Salle Évasion"
|
||||
button={{
|
||||
@@ -52,6 +45,7 @@ export default function GalleryPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Notre Galerie d'Événements"
|
||||
description="Découvrez des moments inoubliables capturés dans notre salle."
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "1", name: "Mariage Élégant", price: "À partir de 1500€", variant: "Cérémonie", imageSrc: "http://img.b2bpic.net/free-photo/wedding-ceremony-area-in-a-forest-decorated-with-white-flowers-and-rustic-style-details_181624-53900.jpg" },
|
||||
{ id: "2", name: "Anniversaire Joyeux", price: "À partir de 500€", variant: "Fête", imageSrc: "http://img.b2bpic.net/free-photo/view-of-table-with-happy-birthday-cake-and-drinks_23-2148405096.jpg" },
|
||||
@@ -68,36 +62,25 @@ export default function GalleryPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Découvrir", items: [
|
||||
{
|
||||
label: "Accueil", href: "/"},
|
||||
{
|
||||
label: "À Propos", href: "/about"},
|
||||
{
|
||||
label: "Services", href: "/#services"},
|
||||
{
|
||||
label: "Galerie", href: "/#gallery"}
|
||||
{ label: "Accueil", href: "/"},
|
||||
{ label: "À Propos", href: "/about"},
|
||||
{ label: "Services", href: "/services"},
|
||||
{ label: "Galerie", href: "/gallery"}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Assistance", items: [
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Contact", href: "/#contact"},
|
||||
{
|
||||
label: "Politique de Confidentialité", href: "#"},
|
||||
{
|
||||
label: "Conditions Générales", href: "#"}
|
||||
{ label: "FAQ", href: "/#faq"},
|
||||
{ label: "Contact", href: "/#contact"},
|
||||
{ label: "Politique de Confidentialité", href: "#"},
|
||||
{ label: "Conditions Générales", href: "#"}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Nous Suivre", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "LinkedIn", href: "#"}
|
||||
{ label: "Facebook", href: "#"},
|
||||
{ label: "Instagram", href: "#"},
|
||||
{ label: "LinkedIn", href: "#"}
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
@@ -24,132 +24,71 @@ export default function ServicesPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil", href: "/"},
|
||||
{
|
||||
name: "À Propos", id: "#about"},
|
||||
{
|
||||
name: "Services", href: "/services"},
|
||||
{
|
||||
name: "Galerie", id: "#gallery"},
|
||||
{
|
||||
name: "Témoignages", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "#faq"},
|
||||
{
|
||||
name: "Contact", id: "#contact"},
|
||||
{ name: "Accueil", id: "/" },
|
||||
{ name: "À Propos", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Galerie", id: "/gallery" },
|
||||
{ name: "Témoignages", id: "/#testimonials" },
|
||||
{ name: "FAQ", id: "/#faq" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="Salle Évasion"
|
||||
button={{
|
||||
text: "Demander un devis", href: "/#contact"}}
|
||||
button={{ text: "Demander un devis", href: "/#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FeatureCardTwentyThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "wedding-feature-1", title: "Cérémonies Élégantes", tags: ["Luxe", "Personnalisé", "Chic"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-setup_23-2149575129.jpg", imageAlt: "Décoration de mariage élégante avec des fleurs"},
|
||||
]}
|
||||
title="Mariages Inoubliables"
|
||||
description="Créez votre journée de rêve avec nos forfaits mariage élégants. Des lieux somptueux aux décors personnalisés, chaque détail est pensé pour une célébration sans pareil."
|
||||
className="my-12"
|
||||
/>
|
||||
|
||||
<FeatureCardTwentyThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "engagement-feature-1", title: "Décors Personnalisés", tags: ["Romantique", "Intime", "Sur Mesure"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-wedding-composition-on-white-table_23-2149574246.jpg", imageAlt: "Décoration romantique pour fiançailles"},
|
||||
]}
|
||||
title="Fiançailles Magiques"
|
||||
description="Célébrez votre amour avec une ambiance romantique et des décorations sur mesure. Nous transformons votre vision en une réalité enchantée pour ce moment unique."
|
||||
className="my-12"
|
||||
/>
|
||||
|
||||
<FeatureCardTwentyThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "birthday-feature-1", title: "Ambiance Festive", tags: ["Famille", "Amusement", "Thème"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/navratri-highly-detailed-interior-decoration_23-2151193720.jpg", imageAlt: "Salle décorée pour une fête d'anniversaire"},
|
||||
]}
|
||||
title="Anniversaires Mémorables"
|
||||
description="Des fêtes joyeuses pour tous les âges. Nos espaces sont parfaits pour des célébrations familiales, avec des options de divertissement pour les enfants et les adultes."
|
||||
className="my-12"
|
||||
/>
|
||||
|
||||
<FeatureCardTwentyThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "corporate-feature-1", title: "Réunions Productives", tags: ["Affaires", "Technologie", "Réseautage"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/conference-room-with-chairs-round-table-ready-seminar_146671-16167.jpg", imageAlt: "Salle de conférence prête pour une réunion"},
|
||||
]}
|
||||
title="Événements Corporate Professionnels"
|
||||
description="Organisez vos réunions, conférences ou galas d'entreprise dans un cadre professionnel et équipé. Solutions techniques et services adaptés à vos exigences."
|
||||
className="my-12"
|
||||
/>
|
||||
|
||||
<FeatureCardTwentyThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "private-feature-1", title: "Expériences Sur Mesure", tags: ["Intimité", "Exclusif", "Personnalisé"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-table-decorated-with-flowers_23-2149091871.jpg", imageAlt: "Table de restaurant élégamment dressée pour un événement privé"},
|
||||
]}
|
||||
title="Événements Privés Exclusifs"
|
||||
description="Qu'il s'agisse d'un dîner privé, d'une soirée spéciale ou d'une célébration intime, nous créons une expérience entièrement personnalisée, à votre image."
|
||||
className="my-12"
|
||||
/>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardTwentyThree
|
||||
animationType="blur-reveal"
|
||||
title="Nos Services d'Événements"
|
||||
description="Découvrez une gamme complète de services pour faire de votre événement un succès inoubliable."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "service-1", title: "Location de Salle", tags: ["Salle", "Location"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-ceremony-area-in-a-forest-decorated-with-white-flowers-and-rustic-style-details_181624-53900.jpg", imageAlt: "Salle décorée pour un mariage"
|
||||
},
|
||||
{
|
||||
id: "service-2", title: "Traiteur Exclusif", tags: ["Nourriture", "Boissons"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-of-table-with-happy-birthday-cake-and-drinks_23-2148405096.jpg", imageAlt: "Buffet traiteur"
|
||||
},
|
||||
{
|
||||
id: "service-3", title: "Organisation Complète", tags: ["Planification", "Coordination"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/large-empty-meeting-room_23-2148782068.jpg", imageAlt: "Équipe d'organisation d'événements"
|
||||
},
|
||||
{
|
||||
id: "service-4", title: "Décoration Thématique", tags: ["Thème", "Ambiance"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-wedding-reception-hall-illustration_1150-13725.jpg", imageAlt: "Décoration de salle"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Découvrir", items: [
|
||||
{
|
||||
label: "Accueil", href: "/"},
|
||||
{
|
||||
label: "À Propos", href: "/#about"},
|
||||
{
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "Galerie", href: "/#gallery"},
|
||||
{ label: "Accueil", href: "/" },
|
||||
{ label: "À Propos", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Galerie", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Assistance", items: [
|
||||
{
|
||||
label: "FAQ", href: "/#faq"},
|
||||
{
|
||||
label: "Contact", href: "/#contact"},
|
||||
{
|
||||
label: "Politique de Confidentialité", href: "#"},
|
||||
{
|
||||
label: "Conditions Générales", href: "#"},
|
||||
{ label: "FAQ", href: "/#faq" },
|
||||
{ label: "Contact", href: "/#contact" },
|
||||
{ label: "Politique de Confidentialité", href: "#" },
|
||||
{ label: "Conditions Générales", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Nous Suivre", items: [
|
||||
{
|
||||
label: "Facebook", href: "#"},
|
||||
{
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "LinkedIn", href: "#"},
|
||||
{ label: "Facebook", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user