diff --git a/src/app/page.tsx b/src/app/page.tsx index 6f311a0..7c549ff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; @@ -29,25 +29,17 @@ export default function LandingPage() { @@ -56,8 +48,7 @@ export default function LandingPage() {
-
); -} +} \ No newline at end of file diff --git a/src/app/product-catalog/page.tsx b/src/app/product-catalog/page.tsx new file mode 100644 index 0000000..0452cd4 --- /dev/null +++ b/src/app/product-catalog/page.tsx @@ -0,0 +1,65 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; + +export default function ProductCatalogPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx new file mode 100644 index 0000000..df024a1 --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,64 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function ShopPage() { + return ( + + + +
+ +
+ +
+
+ ); +}