From be77495e11f276ce01880a04abb596ac70096140 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 18:17:56 +0000 Subject: [PATCH 1/2] Update src/app/consultation/page.tsx --- src/app/consultation/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/consultation/page.tsx b/src/app/consultation/page.tsx index 2611292..a8afc13 100644 --- a/src/app/consultation/page.tsx +++ b/src/app/consultation/page.tsx @@ -18,9 +18,10 @@ export default function ConsultationPage() { { name: 'Services', id: '/#services' }, { name: 'Who This Is For', id: '/#who-this-is-for' }, { name: 'What You Get', id: '/#what-you-get' }, + { name: 'Products', id: '/products' }, { name: 'Portfolio', id: '/#portfolio' }, { name: 'Testimonials', id: '/#testimonials' }, - { name: 'Consultation', id: '/consultation' }, + { name: 'Book Now', id: '/consultation' }, { name: 'Contact', id: '/#contact' } ]; @@ -142,10 +143,11 @@ export default function ConsultationPage() { { title: "Company", items: [ { label: "Home", href: "/" }, + { label: "Products", href: "/products" }, { label: "Portfolio", href: "/#portfolio" }, { label: "Testimonials", href: "/#testimonials" }, - { label: "Contact", href: "/#contact" }, - { label: "Consultation", href: "/consultation" } + { label: "Book Now", href: "/consultation" }, + { label: "Contact", href: "/#contact" } ] }, { -- 2.49.1 From ba30162853f27639a0c0fac4041fcaf088fd0e25 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 18:17:57 +0000 Subject: [PATCH 2/2] Add src/app/products/page.tsx --- src/app/products/page.tsx | 171 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..8e55fd9 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,171 @@ +"use client"; + +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import ReactLenis from 'lenis/react'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Sparkles, Gem, CheckCircle, ArrowRight } from 'lucide-react'; + +export default function ProductsPage() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Services', id: '/#services' }, + { name: 'Who This Is For', id: '/#who-this-is-for' }, + { name: 'What You Get', id: '/#what-you-get' }, + { name: 'Products', id: '/products' }, + { name: 'Portfolio', id: '/#portfolio' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'Book Now', id: '/consultation' }, + { name: 'Contact', id: '/#contact' } + ]; + + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} -- 2.49.1