From 78ff4fc31f1a2d1157613bdd48b3cf75fec57ddc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 15:47:58 +0000 Subject: [PATCH 1/4] Add src/app/consultation/page.tsx --- src/app/consultation/page.tsx | 136 ++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 src/app/consultation/page.tsx 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 ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} -- 2.49.1 From b7d587bcbc11063926126bcb9c014637f940b5c2 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 15:47:58 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 340 +++++++++++++++++++++-------------------------- 1 file changed, 155 insertions(+), 185 deletions(-) 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() { Date: Mon, 23 Mar 2026 15:47:59 +0000 Subject: [PATCH 3/4] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index e17fc06..e9d737f 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-font-family: var(--font-inter), sans-serif;), sans-serif; + font-family: var(--font-font-family: var(--font-archivo), sans-serif;), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-font-family: var(--font-inter), sans-serif;), sans-serif; + font-family: var(--font-font-family: var(--font-archivo), sans-serif;), sans-serif; } -- 2.49.1 From dc3b0e1d0dea01d0c0069c6f3ccdd6455cf32311 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 15:47:59 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index fd4b95e..d5045ec 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,8 +10,8 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0A0A0A; - --card: #1A1A1A; + --background: #000000; + --card: #1a1a1a; --foreground: #E0E0E0; --primary-cta: #00D9FF; --primary-cta-text: #0A0A0A; -- 2.49.1