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 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 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