Switch to version 1: remove src/app/pricing/page.tsx

This commit is contained in:
2026-03-28 09:27:49 +00:00
parent 7355707779
commit ca5e77b602

View File

@@ -1,48 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
export default function PricingPage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<div className="pt-32 pb-20">
<PricingCardThree
title="Transparent Pricing"
description="Simple plans for every stage of your business growth."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{ id: "starter", name: "Starter", price: "$999", features: ["Core UI Design", "Basic Development", "Responsive Layout"], buttons: [{ text: "Get Started" }] },
{ id: "pro", name: "Professional", price: "$2499", features: ["Everything in Starter", "Advanced Interactions", "SEO Setup", "Brand Assets"], buttons: [{ text: "Get Started" }] },
{ id: "enterprise", name: "Enterprise", price: "$4999", features: ["Full System Architecture", "Custom CMS", "Ongoing Support", "Performance Optimization"], buttons: [{ text: "Get Started" }] }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="FreelanceFlow"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}