diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..5e67a33 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, +]; + +export default function AboutPage() { + return ( + + +
+ +
+
+ +
+ +
+ ); +}