diff --git a/src/app/projects/ecommerce-platform-redesign/page.tsx b/src/app/projects/ecommerce-platform-redesign/page.tsx new file mode 100644 index 0000000..acafcc4 --- /dev/null +++ b/src/app/projects/ecommerce-platform-redesign/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function EcommercePlatformRedesignPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}