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" } ] }, { 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 ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +}