From 30e37883907a71507157188fd7dfbbeebe0b30a7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 03:30:12 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 145 ++++++----------------------------------- 1 file changed, 20 insertions(+), 125 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 52820cc..252b0c1 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,131 +1,26 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -export default function LandingPage() { +export default function About() { + const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Services', id: '/services' }, { name: 'Contact', id: '/contact' }]; + return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From 071bc5bc5c9a5d132673f5c1a0a670e58eae8a30 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 03:30:13 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 155 ++++++--------------------------------- 1 file changed, 21 insertions(+), 134 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f5401ad..73b9a1b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,139 +1,26 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function Contact() { + const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Services', id: '/services' }, { name: 'Contact', id: '/contact' }]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1 From b14c63307a35e2fd105cd97c8ac6eecf4ff879d1 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 03:30:13 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ebeeb8..3c969f7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,6 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import Link from 'next/link'; export default function Home() { const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Services', id: '/services' }, { name: 'Contact', id: '/contact' }]; -- 2.49.1 From 14a81d8716283793b3e61c944c8862018ce88b3c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 12 Apr 2026 03:30:14 +0000 Subject: [PATCH 4/4] Update src/app/services/page.tsx --- src/app/services/page.tsx | 172 +++++--------------------------------- 1 file changed, 20 insertions(+), 152 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index b291e9b..60050f5 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -1,158 +1,26 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function Services() { + const navItems = [{ name: 'Home', id: '/' }, { name: 'About', id: '/about' }, { name: 'Services', id: '/services' }, { name: 'Contact', id: '/contact' }]; -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1