diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cc8d887..d64d546 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -48,15 +47,11 @@ export default function LandingPage() {
@@ -65,18 +60,15 @@ export default function LandingPage() { columns={[ { title: "Tess's Kitchen", items: [ - { - label: "Home", href: "/"}, - { - label: "About", href: "/about"}, + { label: "Home", href: "/" }, + { label: "About", href: "/about" }, + { label: "Products", href: "/products" }, ], }, { title: "Follow Us", items: [ - { - label: "Facebook", href: "#"}, - { - label: "Instagram", href: "#"}, + { label: "Facebook", href: "#" }, + { label: "Instagram", href: "#" }, ], }, ]} @@ -87,4 +79,4 @@ export default function LandingPage() {
); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index bd147da..d7d7a44 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -26,10 +26,9 @@ export default function LandingPage() { @@ -157,18 +116,15 @@ export default function LandingPage() { columns={[ { title: "Tess's Kitchen", items: [ - { - label: "Home", href: "/"}, - { - label: "About", href: "/about"}, + { label: "Home", href: "/" }, + { label: "About", href: "/about" }, + { label: "Products", href: "/products" }, ], }, { title: "Follow Us", items: [ - { - label: "Facebook", href: "#"}, - { - label: "Instagram", href: "#"}, + { label: "Facebook", href: "#" }, + { label: "Instagram", href: "#" }, ], }, ]} @@ -179,4 +135,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..8d1c70a --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,78 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}