Update src/app/pricing-highlighted/page.tsx

This commit is contained in:
2026-05-15 17:52:27 +00:00
parent c0cd2184f7
commit 8f9ae90c00

View File

@@ -28,10 +28,10 @@ export default function PricingHighlightedPage() {
{ 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"> <div className="pt-32 pb-20">
@@ -41,7 +41,7 @@ export default function PricingHighlightedPage() {
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: "#" }] },
]} ]}
/> />
@@ -49,4 +49,4 @@ export default function PricingHighlightedPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }