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

This commit is contained in:
2026-05-15 18:01:07 +00:00
parent 605bf655cd
commit 3e45039fd7

View File

@@ -29,10 +29,9 @@ export default function PricingHighlightedPage() {
{ name: "Réalisations", id: "work" },
{ name: "Services", id: "services" },
{ name: "À Propos", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Pricing", id: "pricing" }
]}
button={{ text: "Démarrer", href: "#contact" }}
button={{ text: "Démarrer", href: "/contact" }}
/>
<div id="pricing-highlighted" className="pt-32 pb-20">
<PricingCardOne
@@ -50,11 +49,11 @@ export default function PricingHighlightedPage() {
logoText="Switzerweb"
copyrightText="© 2026 | Switzerweb"
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" }] },
{ title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}