5 Commits

Author SHA1 Message Date
a28e3b6009 Merge version_4 into main
Merge version_4 into main
2026-05-09 16:13:31 +00:00
440ec5c4f7 Update src/app/page.tsx 2026-05-09 16:13:28 +00:00
9b32967061 Merge version_3 into main
Merge version_3 into main
2026-05-09 16:12:07 +00:00
b958c3fe01 Update src/app/page.tsx 2026-05-09 16:12:04 +00:00
8cb487174a Merge version_2 into main
Merge version_2 into main
2026-05-09 16:10:05 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -166,17 +166,23 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1", name: "Sculpture Glace", price: "Sur devis", imageSrc: "http://img.b2bpic.net/free-photo/view-man-practicing-mindfulness-yoga-fantasy-setting_23-2151416442.jpg"},
id: "1", name: "Sculpture Glace", price: "Sur devis", priceButtonProps: { href: "#contact" },
imageSrc: "http://img.b2bpic.net/free-photo/view-man-practicing-mindfulness-yoga-fantasy-setting_23-2151416442.jpg"},
{
id: "2", name: "Atelier Cirque", price: "Sur devis", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-training-gymnastics_23-2149401054.jpg"},
id: "2", name: "Atelier Cirque", price: "Sur devis", priceButtonProps: { href: "#contact" },
imageSrc: "http://img.b2bpic.net/free-photo/young-girl-training-gymnastics_23-2149401054.jpg"},
{
id: "3", name: "Fanfare Colorée", price: "Sur devis", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-holding-instruments_23-2149223643.jpg"},
id: "3", name: "Fanfare Colorée", price: "Sur devis", priceButtonProps: { href: "#contact" },
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-people-holding-instruments_23-2149223643.jpg"},
{
id: "4", name: "Arbre de Noël", price: "Sur devis", imageSrc: "http://img.b2bpic.net/free-photo/people-santa-hats-exchanging-presents_23-2147969578.jpg"},
id: "4", name: "Arbre de Noël", price: "Sur devis", priceButtonProps: { href: "#contact" },
imageSrc: "http://img.b2bpic.net/free-photo/people-santa-hats-exchanging-presents_23-2147969578.jpg"},
{
id: "5", name: "Parade Musicale", price: "Sur devis", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-universe-texture-projection_23-2149512167.jpg"},
id: "5", name: "Parade Musicale", price: "Sur devis", priceButtonProps: { href: "#contact" },
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-standing-universe-texture-projection_23-2149512167.jpg"},
{
id: "6", name: "Atelier Acro", price: "Sur devis", imageSrc: "http://img.b2bpic.net/free-photo/acrobat-posing_1163-967.jpg"},
id: "6", name: "Atelier Acro", price: "Sur devis", priceButtonProps: { href: "#contact" },
imageSrc: "http://img.b2bpic.net/free-photo/acrobat-posing_1163-967.jpg"},
]}
title="Nos Prestations"
description="Une gamme complète d'ateliers et animations pour tous les publics."
@@ -188,8 +194,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Charenton", "Elysée", "Disney", "Rodin", "Trianon", "Vincennes", "Fontainebleau"]}
title="Ils nous ont fait confiance"
"Charenton", "Elysée", "Disney", "Rodin", "Trianon", "Vincennes", "Fontainebleau"]} title="Ils nous ont fait confiance"
description="Des partenaires institutionnels et culturels de premier plan."
/>
</div>
@@ -249,15 +254,27 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
<FooterBase
logoText="La Girafe aux Mille Pattes"
leftLink={{
text: "© KpointRINE 2025", href: "#"}}
rightLink={{
text: "Politique de confidentialité", href: "#"}}
columns={[
{
title: "Navigation", items: [
{ label: "Accueil", href: "#hero" },
{ label: "Spectacles", href: "#spectacles" },
{ label: "Prestations", href: "#prestations" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Légal", items: [
{ label: "Politique de confidentialité", href: "/privacy" },
{ label: "Mentions légales", href: "/legal" }
]
}
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}