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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b556119..a8a1577 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -3,14 +3,16 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
+import ContactText from '@/components/sections/contact/ContactText';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
+import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
-import { Code, Grid, MessageSquare, Palette, Rocket } from "lucide-react";
+import { CheckCircle, Code, Grid, MessageSquare, Palette, Rocket } from "lucide-react";
export default function LandingPage() {
return (
@@ -31,25 +33,21 @@ export default function LandingPage() {
@@ -59,46 +57,29 @@ export default function LandingPage() {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -307,58 +300,35 @@ export default function LandingPage() {