Files
8f16cc47-e460-446a-87ae-2f9…/src/app/pricing/page.tsx
2026-01-19 19:38:16 +02:00

140 lines
5.0 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import { Sparkles, Award } from "lucide-react";
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="NEXUS"
navItems={[
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Transparent Pricing for Every Scale"
description="Choose the perfect plan for your brand. All plans include dedicated support, monthly reporting, and strategic optimization."
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="slide-up"
plans={[
{
id: "starter",
tag: "Starter Plan",
price: "$2,500",
period: "/month",
description: "Perfect for brands just beginning their social media journey.",
button: { text: "Get Started", href: "/contact" },
featuresTitle: "What's Included:",
features: [
"2 Social Media Platforms",
"8 Posts Per Month",
"Basic Community Management",
"Monthly Performance Report",
"Email Support"
]
},
{
id: "professional",
tag: "Professional Plan",
tagIcon: Sparkles,
price: "$5,000",
period: "/month",
description: "Ideal for growing brands ready to scale their social presence.",
button: { text: "Schedule Consultation", href: "/contact" },
featuresTitle: "What's Included:",
features: [
"All Major Social Platforms",
"24 Posts Per Month",
"Advanced Community Management",
"Content Calendar Planning",
"Weekly Performance Updates",
"Basic Paid Ads Management",
"Dedicated Account Manager"
]
},
{
id: "enterprise",
tag: "Enterprise Plan",
tagIcon: Award,
price: "Custom",
period: "/month",
description: "Full-service solution for established brands demanding premium results.",
button: { text: "Contact Our Team", href: "/contact" },
featuresTitle: "What's Included:",
features: [
"Unlimited Social Platforms",
"Unlimited Content Creation",
"24/7 Community Management",
"Influencer Partnerships",
"Advanced Analytics & Reporting",
"Paid Ads Strategy & Execution",
"Video Production Services",
"Priority Support",
"Strategic Brand Consulting"
]
}
]}
/>
</div>
<FooterLogoEmphasis
logoText="NEXUS"
columns={[
{
items: [
{ label: "Services", href: "/services" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "Pricing", href: "/pricing" }
]
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Team", href: "/about" },
{ label: "Careers", href: "https://nexus-agency.com/careers" }
]
},
{
items: [
{ label: "Contact", href: "/contact" },
{ label: "hello@nexus-agency.com", href: "mailto:hello@nexus-agency.com" },
{ label: "+1 (555) 123-4567", href: "tel:+15551234567" }
]
},
{
items: [
{ label: "Twitter", href: "https://twitter.com/nexus-agency" },
{ label: "Instagram", href: "https://instagram.com/nexus-agency" },
{ label: "LinkedIn", href: "https://linkedin.com/company/nexus-agency" }
]
}
]}
/>
</ThemeProvider>
);
}