Add src/app/portfolio/page.tsx

This commit is contained in:
2026-03-26 21:48:36 +00:00
parent e8ad2b59cc
commit 9f0d7bf37e

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="Studio"
button={{ text: "Get in Touch", href: "/#contact" }}
/>
<div className="pt-32 pb-20">
<ProductCardThree
title="Our Selected Work"
description="A showcase of our recent projects, highlighting our expertise in design, development, and strategy."
tag="Portfolio"
tagIcon={Briefcase}
products={projects}
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}