Add src/app/portfolio/page.tsx

This commit is contained in:
2026-04-01 14:27:22 +00:00
parent 6db15348ab
commit 1a3bff7229

View File

@@ -0,0 +1,45 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
export default function PortfolioPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/services" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Results", id: "/#metrics" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="ELEVATE"
/>
<main className="pt-32 pb-20">
<FeatureCardSix
title="Client Portfolio"
description="Showcasing successful brand transformations and campaigns."
textboxLayout="split"
features={[
{ id: 1, title: "Global Tech Launch", description: "Managed end-to-end launch campaign resulting in 1M+ reach." },
{ id: 2, title: "Fashion Brand Refresh", description: "Complete visual overhaul and community strategy for a top tier label." },
{ id: 3, title: "Lifestyle Influencer Series", description: "Curated storytelling campaigns for top lifestyle creators." }
]}
/>
</main>
<FooterLogoReveal
logoText="ELEVATE"
leftLink={{ text: "Terms of Service", href: "#" }}
rightLink={{ text: "Privacy Policy", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}