diff --git a/src/app/page.tsx b/src/app/page.tsx
index 197a0d5..3a01ab2 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -29,11 +29,11 @@ export default function LandingPage() {
@@ -249,7 +249,7 @@ export default function LandingPage() {
{ label: "Residential Junk Removal", href: "#features" },
{ label: "Commercial Cleanup", href: "#features" },
{ label: "Construction Debris", href: "#features" },
- { label: "Pricing", href: "#pricing" }
+ { label: "Pricing", href: "/pricing" }
]
},
{
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
new file mode 100644
index 0000000..efbf63e
--- /dev/null
+++ b/src/app/pricing/page.tsx
@@ -0,0 +1,219 @@
+"use client";
+
+import { Crown, DollarSign, Heart, Sparkles, Star, TrendingUp, Zap, Check } from "lucide-react";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
+import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
+import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
+import FaqSplitText from '@/components/sections/faq/FaqSplitText';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+
+export default function PricingPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}