diff --git a/src/app/page.tsx b/src/app/page.tsx index 4b81272..aee09c2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Services", id: "features" }, { name: "Portfolio", id: "products" }, + { name: "Pricing", id: "pricing" }, { name: "Testimonials", id: "testimonials" }, { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" } @@ -232,7 +233,7 @@ export default function LandingPage() { columns={[ { items: [ - { label: "Home", href: "#hero" }, + { label: "Home", href: "/" }, { label: "About", href: "#about" }, { label: "Services", href: "#features" }, { label: "Portfolio", href: "#products" } @@ -240,10 +241,10 @@ export default function LandingPage() { }, { items: [ + { label: "Pricing", href: "/pricing" }, { label: "Testimonials", href: "#testimonials" }, { label: "Blog", href: "#blog" }, - { label: "Contact", href: "#contact" }, - { label: "Book Now", href: "#contact" } + { label: "Contact", href: "#contact" } ] }, { @@ -268,4 +269,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..8143617 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,122 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ + +
+ ); +}