diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..6877af5 --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,128 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function PortfolioPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}