diff --git a/src/app/page.tsx b/src/app/page.tsx index a8e0969..cc51e9b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Why Us", id: "about" }, { name: "Gallery", id: "feature" }, - { name: "Reviews", id: "testimonial" } + { name: "Reviews", id: "testimonial" }, + { name: "Pricing", id: "/pricing" } ]} button={{ text: "Call Now", href: "tel:+1-555-123-4567" }} /> @@ -280,4 +281,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..43121cb --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,126 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, Sparkles, Zap, Calendar, DollarSign, Facebook, Instagram, Phone } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file