60 lines
2.3 KiB
TypeScript
60 lines
2.3 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 PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
|
import { CheckCircle } from "lucide-react";
|
|
|
|
export default function PricingHighlightedPage() {
|
|
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: "Home", id: "/" },
|
|
{ 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" }}
|
|
/>
|
|
<div id="pricing-highlighted" className="pt-32 pb-20">
|
|
<PricingCardOne
|
|
title="Pricing Plans"
|
|
description="Premium plans with highlighted features."
|
|
animationType="depth-3d"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
plans={[
|
|
{ id: "pro", badge: "Highlighted", badgeIcon: CheckCircle, price: "$199", subtitle: "Best value plan", features: ["Everything in standard", "Dedicated support", "Custom analytics", "Unlimited projects"] }
|
|
]}
|
|
/>
|
|
</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>
|
|
);
|
|
} |