Add src/app/pricing/page.tsx

This commit is contained in:
2026-03-26 17:56:40 +00:00
parent 6362978865
commit 42b4b784cb

38
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,38 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
export default function PricingPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Offerings", id: "/offerings" },
{ name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Elysium Elite"
/>
<PricingCardThree
title="Premium Packages"
description="Select the level of luxury advisory that fits your vision."
animationType="blur-reveal"
textboxLayout="split"
plans={[
{ id: "p1", name: "Essential", price: "$5,000", features: ["Core Strategy", "Monthly Check-ins"], buttons: [{ text: "Get Started" }] },
{ id: "p2", name: "Executive", price: "$15,000", features: ["Deep Consulting", "Brand Strategy", "Risk Analysis"], buttons: [{ text: "Get Started" }] }
]}
className="pt-32"
/>
<FooterSimple columns={[]} bottomLeftText="© 2024 Elysium Elite." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}