diff --git a/src/app/pricing-highlighted-cards/page.tsx b/src/app/pricing-highlighted-cards/page.tsx index 80d6cac..4b2112b 100644 --- a/src/app/pricing-highlighted-cards/page.tsx +++ b/src/app/pricing-highlighted-cards/page.tsx @@ -28,10 +28,10 @@ export default function PricingHighlightedCardsPage() { { name: "Réalisations", id: "work" }, { name: "Services", id: "services" }, { name: "À Propos", id: "about" }, - { name: "Contact", id: "contact" }, - { name: "Pricing", id: "pricing" } + { name: "Contact", id: "/contact" }, + { name: "Tarifs", id: "pricing" } ]} - button={{ text: "Démarrer", href: "#contact" }} + button={{ text: "Démarrer", href: "/contact" }} />
@@ -41,7 +41,7 @@ export default function PricingHighlightedCardsPage() { 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" }, { label: "Contact", href: "/contact" }] }, { title: "Services", items: [{ label: "Dév Web", href: "#" }, { label: "SEO", href: "#" }] }, ]} /> @@ -49,4 +49,4 @@ export default function PricingHighlightedCardsPage() { ); -} \ No newline at end of file +}