Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-05 16:40:29 +00:00

View File

@@ -7,7 +7,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -22,97 +22,65 @@ export default function LandingPage() {
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Accueil",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "À Propos",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Home Reno"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Home Reno"
/>
</div>
<div id="contact-info" data-section="contact-info">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
title="Contactez Home Reno"
description="06 67 22 43 58 | Intervention rapide à Vichy et environs."
/>
</div>
<div id="contact-info" data-section="contact-info">
<ContactCenter
tag="Contact"
useInvertedBackground={false}
background={{
variant: "plain"}}
title="Contactez Home Reno"
description="06 67 22 43 58 | Intervention rapide à Vichy et environs."
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Contact"
title="Besoin d'un conseil ?"
description="Appelez-nous dès maintenant pour discuter de votre projet de toiture."
buttons={[
{
text: "Appeler",
href: "tel:0667224358",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Contact"
title="Besoin d'un conseil ?"
description="Appelez-nous dès maintenant pour discuter de votre projet de toiture."
buttons={[
{
text: "Appeler", href: "tel:0667224358"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Home Reno"
columns={[
{
title: "Liens",
items: [
{
label: "Services",
href: "/services",
},
{
label: "À propos",
href: "/about",
},
],
},
{
title: "Zone d'intervention",
items: [
{
label: "Vichy",
href: "#",
},
{
label: "Cusset",
href: "#",
},
{
label: "Gannat",
href: "#",
},
],
},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29993.jpg?_wi=5"
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
logoText="Home Reno"
columns={[
{
title: "Liens", items: [
{ label: "Services", href: "/services" },
{ label: "À propos", href: "/about" },
],
},
{
title: "Zone d'intervention", items: [
{ label: "Vichy", href: "#" },
{ label: "Cusset", href: "#" },
{ label: "Gannat", href: "#" },
],
},
]}
imageSrc="http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29993.jpg"
/>
</div>
</ReactLenis>
</ThemeProvider>
);