From 378e0904036d35cc5a2d8122b7e03e970072898e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:36:33 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7e03735..5ca1f89 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() { { name: "About", id: "about" }, { name: "Services", id: "services" }, { name: "Testimonials", id: "testimonials" }, + { name: "Pricing", id: "/pricing" }, { name: "Contact", id: "contact" } ]} button={{ @@ -174,7 +175,7 @@ export default function LandingPage() { columns={[ { title: "Quick Links", items: [ - { label: "Home", href: "#hero" }, + { label: "Home", href: "/" }, { label: "About", href: "#about" }, { label: "Services", href: "#services" }, { label: "Testimonials", href: "#testimonials" } -- 2.49.1 From 200a478bdf581f4fd2512c948943b69e21a9aa64 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 13:36:35 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 130 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 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..912d9a1 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Phone, Scissors } from 'lucide-react'; + +export default function PricingPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1