From c2cdbb878dd1ee2cc7f79fe374749d9b9c1a6ce6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 10:47:35 +0000 Subject: [PATCH] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 108 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 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..d6d7474 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,108 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; + +const commonNavbarProps = { + navItems: [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/#about" }, { name: "Services", id: "/#services" }, + { name: "Results", id: "/#achievements" }, + { name: "Pricing", id: "/pricing" }, + { name: "Team", id: "/team" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "FAQ", id: "/#faq" } + ], + logoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c3ws6w", logoAlt: "Maryam Dental Clinic Logo", brandName: "Maryam Dental Clinic", button: { + text: "Book Consultation", href: "/#contact" + } +}; + +const commonFooterProps = { + logoSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c3ws6w", logoAlt: "Maryam Dental Clinic Logo", logoText: "Maryam Dental Clinic", copyrightText: "© 2025 Maryam Dental Clinic. All rights reserved.", columns: [ + { + title: "Company", items: [ + { label: "About Us", href: "/#about" }, + { label: "Team", href: "/team" }, + { label: "Careers", href: "#" } + ] + }, + { + title: "Services", items: [ + { label: "Pricing", href: "/pricing" }, + { label: "Dental Care", href: "/#services" }, + { label: "Testimonials", href: "/testimonials" } + ] + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "FAQ", href: "/#faq" } + ] + } + ] +}; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}