diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..5070aa7 --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -0,0 +1,60 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import { Sparkles, Briefcase } from "lucide-react"; + +export default function PortfolioPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Portfolio", id: "/portfolio" }, + { name: "Contact", id: "/#contact" }, + ]; + + const projects = [ + { + id: "1", name: "Brand Identity Redesign", price: "Strategy & Design", imageSrc: "/templates/web-agency/hero/hero1.webp", imageAlt: "Project 1"}, + { + id: "2", name: "E-commerce Platform", price: "Development", imageSrc: "/templates/web-agency/process/process1.webp", imageAlt: "Project 2"}, + { + id: "3", name: "Mobile App Interface", price: "UI/UX Design", imageSrc: "/templates/web-agency/process/process2.webp", imageAlt: "Project 3"}, + ]; + + return ( + + + +
+ +
+
+
+ ); +}