Switch to version 54: modified src/app/pricing-highlighted/page.tsx
This commit is contained in:
@@ -3,7 +3,9 @@
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
|
import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
|
||||||
|
import { CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function PricingHighlightedPage() {
|
export default function PricingHighlightedPage() {
|
||||||
return (
|
return (
|
||||||
@@ -20,33 +22,39 @@ export default function PricingHighlightedPage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<NavbarLayoutFloatingOverlay
|
||||||
<NavbarLayoutFloatingOverlay
|
brandName="Switzerweb"
|
||||||
brandName="Switzerweb"
|
navItems={[
|
||||||
navItems={[
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Home", id: "/" },
|
{ 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 id="pricing-highlighted" className="pt-32 pb-20">
|
||||||
</div>
|
<PricingCardOne
|
||||||
<div className="pt-32 pb-20">
|
title="Pricing Plans"
|
||||||
</div>
|
description="Premium plans with highlighted features."
|
||||||
<div id="footer" data-section="footer">
|
animationType="depth-3d"
|
||||||
<FooterBaseReveal
|
textboxLayout="default"
|
||||||
logoText="Switzerweb"
|
useInvertedBackground={false}
|
||||||
copyrightText="© 2026 | Switzerweb"
|
plans={[
|
||||||
columns={[
|
{ id: "pro", badge: "Highlighted", badgeIcon: CheckCircle, price: "$199", subtitle: "Best value plan", features: ["Everything in standard", "Dedicated support", "Custom analytics", "Unlimited projects"] }
|
||||||
{ 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: "#" }] },
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</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>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user