From 309addb42ec6992f626d88b3496c05ac3cd3d919 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:20:15 +0000 Subject: [PATCH 1/3] Add src/app/about/page.tsx --- src/app/about/page.tsx | 107 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..e16b17e --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; + +export default function AboutPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From a4d73b5ac326de47fb26a7f6e25607e181b6769e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:20:15 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 46 ++++------------------------------------------ 1 file changed, 4 insertions(+), 42 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 94ac586..b83695e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,6 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import { MapPin } from "lucide-react"; @@ -35,10 +34,12 @@ export default function LandingPage() { name: "Home", id: "/"}, { name: "About Us", id: "/about"}, + { + name: "Our Team", id: "/team"}, { name: "Products", id: "/products"}, { - name: "Why Choose Us", id: "#why-choose-us"}, + name: "Why Choose Us", id: "/#why-choose-us"}, { name: "Contact", id: "/contact"}, ]} @@ -186,45 +187,6 @@ export default function LandingPage() { /> -
- -
- -
- -
-
); -} +} \ No newline at end of file -- 2.49.1 From c8b3ef914915b2c195cfdf1304e2c05f72269fb6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:20:16 +0000 Subject: [PATCH 3/3] Add src/app/team/page.tsx --- src/app/team/page.tsx | 117 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 src/app/team/page.tsx diff --git a/src/app/team/page.tsx b/src/app/team/page.tsx new file mode 100644 index 0000000..f0a5fdf --- /dev/null +++ b/src/app/team/page.tsx @@ -0,0 +1,117 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; + +export default function TeamPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1