diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4f4f724..22d99e0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,15 +1,15 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function AboutPage() { return ( - - - - + + + + ); } \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7d3e50f..825f528 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,15 +1,15 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ContactPage() { return ( - - - - + + + + ); } \ No newline at end of file diff --git a/src/app/policy/page.tsx b/src/app/policy/page.tsx index ad3677e..7fa0065 100644 --- a/src/app/policy/page.tsx +++ b/src/app/policy/page.tsx @@ -1,15 +1,15 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import LegalSection from '@/components/legal/LegalSection'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function PolicyPage() { return ( - - + + - + ); } \ No newline at end of file diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 69248c6..d2dd1a1 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -1,29 +1,11 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -export default function ProductDetailPage({ params }: { params: { id: string } }) { +export default function ProductDetailPage() { return ( - - - -
-

Product Detail: {params.id}

-

Product description, price details, and specification list will be displayed here.

-
- -
+ + ); -} +} \ No newline at end of file diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 8db0cb6..fcfe5e2 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,39 +1,27 @@ "use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function ShopPage() { return ( - - - -
- -
- -
+ + + + ); -} +} \ No newline at end of file