Add src/app/pricing/page.tsx

This commit is contained in:
2026-03-28 07:57:16 +00:00
parent 543e1e0e2e
commit 6684e1c390

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 PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function PricingPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" },
{ name: "Team", id: "/team" },
{ name: "Contact", id: "/contact" }
]}
brandName="Vantage Social"
/>
<PricingCardNine
animationType="slide-up"
textboxLayout="split"
title="Pricing Plans"
description="Clear, transparent pricing for your brand's growth."
plans={[
{ id: "p1", title: "Starter", price: "$999", period: "/mo", features: ["Content Strategy", "Community Growth"], button: { text: "Choose Plan" } },
{ id: "p2", title: "Pro", price: "$2999", period: "/mo", features: ["Everything in Starter", "Performance Ads", "Analytics"], button: { text: "Choose Plan" } }
]}
/>
<FooterBase
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }] }]}
logoText="Vantage Social"
/>
</ReactLenis>
</ThemeProvider>
);
}