diff --git a/src/app/work/page.tsx b/src/app/work/page.tsx new file mode 100644 index 0000000..807fc71 --- /dev/null +++ b/src/app/work/page.tsx @@ -0,0 +1,127 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { ArrowUpRight } from "lucide-react"; + +export default function WorkPage() { + return ( + + + + + +
+ +
+ +
+
+ ); +}