From 5d53e08cc29317b8952e4a2c02d7f08187cc1be3 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 09:33:17 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 168 ++++++++++------------------------------- 1 file changed, 39 insertions(+), 129 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3e9284b..da44fa6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,135 +1,45 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import { ShieldCheck, Smile } from "lucide-react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { ShieldCheck } from "lucide-react"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } +]; + +export default function AboutPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From 9b99cfbdd4dc8b04776a6446a6e6dbe1729dd1d7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 09:33:17 +0000 Subject: [PATCH 2/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 151 +++++++++------------------------------ 1 file changed, 35 insertions(+), 116 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fb1f3ee..cbaa837 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,122 +1,41 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } +]; + +export default function ContactPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From b5d3ad5f569ff072bffeaa06abe790ec27e7c317 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 09:33:17 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 76 ++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 61 insertions(+), 15 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f73e6b3..5a228de 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -'use client'; +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial"; @@ -6,38 +6,84 @@ import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwen import ProductCardOne from "@/components/sections/product/ProductCardOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Home, FileText, Award } from "lucide-react"; const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Services", id: "/services" } ]; -export default function Home() { +export default function HomePage() { return ( - +
- +
- +
- +
- +
); -- 2.49.1