diff --git a/src/app/consultation/page.tsx b/src/app/consultation/page.tsx new file mode 100644 index 0000000..a9397f7 --- /dev/null +++ b/src/app/consultation/page.tsx @@ -0,0 +1,136 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; +import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import TextBox from "@/components/Textbox"; +import { ClipboardList, Brain, Target, Calendar } from "lucide-react"; + +export default function ConsultationPage() { + const navItems = [ + { name: "Home", id: "home", href: "/" }, + { name: "Services", id: "services", href: "/#services" }, + { name: "Portfolio", id: "portfolio", href: "/#portfolio" }, + { name: "Testimonials", id: "testimonials", href: "/#testimonials" }, + { name: "Contact", id: "contact", href: "/#contact" }, + { name: "Consultation", href: "/consultation" } + ]; + + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +}