diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..53f004f --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,55 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import SplitAbout from "@/components/sections/about/SplitAbout"; +import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" } +]; + +export default function AboutPage() { + return ( + + + +
+ + +
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/catalog/page.tsx b/src/app/catalog/page.tsx new file mode 100644 index 0000000..9a4ddae --- /dev/null +++ b/src/app/catalog/page.tsx @@ -0,0 +1,48 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; + +export default function CatalogPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Catalog", id: "/catalog" } + ]; + + const products = [ + { id: "1", name: "Signature Knife Set", price: "$299", variant: "Professional", imageSrc: "https://images.unsplash.com/photo-1593618998160-e34014d3e098?w=800&h=600" }, + { id: "2", name: "Artisan Ceramic Bowl", price: "$45", variant: "Handmade", imageSrc: "https://images.unsplash.com/photo-1594971206138-c627f10b7842?w=800&h=600" }, + { id: "3", name: "Cast Iron Skillet", price: "$120", variant: "Heritage", imageSrc: "https://images.unsplash.com/photo-1583394838336-acd977736f90?w=800&h=600" }, + { id: "4", name: "Copper Mixing Bowls", price: "$185", variant: "Set of 3", imageSrc: "https://images.unsplash.com/photo-1603953531649-143003013824?w=800&h=600" } + ]; + + return ( + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..4ec7d6e --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,39 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; + +export default function ContactPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" } + ]; + + return ( + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 9368a0c..474eaac 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,8 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; export default function LandingPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Contact", id: "/contact" } + ]; + return ( +

Project Scrapped