Switch to version 56: modified src/app/comparison/page.tsx

This commit is contained in:
2026-05-15 17:53:53 +00:00
parent 2cfadee187
commit e13d0963a5

View File

@@ -28,10 +28,10 @@ export default function ComparisonPage() {
{ name: "Réalisations", id: "work" }, { name: "Réalisations", id: "work" },
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "À Propos", id: "about" }, { name: "À Propos", id: "about" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "/contact" },
{ name: "Pricing", id: "pricing" } { name: "Tarifs", id: "pricing" }
]} ]}
button={{ text: "Démarrer", href: "#contact" }} button={{ text: "Démarrer", href: "/contact" }}
/> />
</div> </div>
<div className="pt-32 pb-20 text-center"> <div className="pt-32 pb-20 text-center">
@@ -43,7 +43,7 @@ export default function ComparisonPage() {
logoText="Switzerweb" logoText="Switzerweb"
copyrightText="© 2026 | Switzerweb" copyrightText="© 2026 | Switzerweb"
columns={[ columns={[
{ title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] }, { title: "Entreprise", items: [{ label: "À Propos", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] }, { title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
]} ]}
/> />
@@ -51,4 +51,4 @@ export default function ComparisonPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }