From db15ce5a02cd4716407aa45bbaefa30a75f95ba7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 10:56:40 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 219 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..b8e1263 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,219 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+
+
+

Detailed Comparison

+

See exactly what's included in each pricing tier

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeaturesBasicStandardPremium
Collection AccessClassicPremiumAll Collections
Warranty1 Year3 YearsLifetime
ShippingStandardPriorityVIP
Community Access
Customer SupportEmailPriority24/7 Concierge
MaintenanceAnnualIncluded
Limited EditionsAccessFirst Access
Private Events✓ VIP
Personal Consultation
+
+
+
+
+ +
+ +
+ + +
+ ); +}