61 lines
2.7 KiB
TypeScript
61 lines
2.7 KiB
TypeScript
"use client";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
|
|
|
|
export default function ComparisonPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="none"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Switzerweb"
|
|
navItems={[
|
|
{ name: "Réalisations", id: "work" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "À Propos", id: "about" },
|
|
{ name: "Contact", id: "contact" },
|
|
{ name: "Pricing", id: "/pricing" },
|
|
{ name: "Nos Offres", id: "/comparison" },
|
|
{ name: "Pricing Highlights", id: "/pricing-highlighted" }
|
|
]}
|
|
button={{ text: "Démarrer", href: "#contact" }}
|
|
/>
|
|
<div id="features-comparison" className="pt-32 pb-20">
|
|
<PricingCardEight
|
|
title="Nos Offres"
|
|
description="Découvrez nos différentes options conçues pour propulser votre croissance digitale."
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
plans={[
|
|
{ id: "basic", badge: "Essentiel", price: "$49", subtitle: "Pour les marques en croissance", features: ["SEO Optimisé", "Développement Web", "Support Standard"], buttons: [{ text: "Démarrer", href: "#" }] },
|
|
{ id: "pro", badge: "Professionnel", price: "$99", subtitle: "Pour les entreprises établies", features: ["Tout le pack Essentiel", "Analyses Avancées", "Support Prioritaire 24/7", "UI/UX Sur-mesure"], buttons: [{ text: "Choisir", href: "#" }] }
|
|
]}
|
|
/>
|
|
</div>
|
|
<FooterBase
|
|
logoText="Switzerweb"
|
|
copyrightText="© 2026 | Switzerweb"
|
|
columns={[
|
|
{ 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: "#" }] },
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |