Add src/app/portfolio/page.tsx

This commit is contained in:
2026-06-02 11:42:31 +00:00
parent 22c09111c7
commit 3cbd52c390

View File

@@ -0,0 +1,94 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardTwentyEight from "@/components/sections/feature/FeatureCardTwentyEight";
import FooterBase from "@/components/sections/footer/FooterBase";
import { ArrowUpRight } from "lucide-react";
export default function PortfolioPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="metallic"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", href: "/" },
{ name: "Portfolio", href: "/portfolio" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", href: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<FeatureCardTwentyEight
title="Our Portfolio & Case Studies"
description="Explore a selection of our award-winning projects and see how we help brands succeed online."
animationType="slide-up"
features={[
{
id: "1", title: "Umbra Skincare Redesign", subtitle: "E-commerce Platform", category: "Web Design", value: "+150% Conversions", buttons: [{ text: "View Case Study", href: "#" }],
},
{
id: "2", title: "Luxuria Travel Brand Identity", subtitle: "Luxury Travel Agency", category: "Branding", value: "Increased Brand Recognition", buttons: [{ text: "View Case Study", href: "#" }],
},
{
id: "3", title: "Dental Care Digital Presence", subtitle: "Healthcare Website", category: "SEO & Web Dev", value: "#1 Local Search Rank", buttons: [{ text: "View Case Study", href: "#" }],
},
{
id: "4", title: "Summit Roofing Lead Generation", subtitle: "Contracting Business", category: "Web Dev & Marketing", value: "+200% Leads", buttons: [{ text: "View Case Study", href: "#" }],
},
{
id: "5", title: "Dubai Real Estate Portal", subtitle: "Property Listing Site", category: "UI/UX & Development", value: "Streamlined User Journey", buttons: [{ text: "View Case Study", href: "#" }],
},
{
id: "6", title: "AgentFlow AI SaaS Platform", subtitle: "Artificial Intelligence", category: "Product Design", value: "Enhanced User Experience", buttons: [{ text: "View Case Study", href: "#" }],
},
]}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Work", href: "/portfolio" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services", items: [
{ label: "Web Development", href: "#" },
{ label: "SEO", href: "#" },
{ label: "Branding", href: "#" },
{ label: "UI/UX Design", href: "#" },
],
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" },
],
},
]}
/>
</ReactLenis>
</ThemeProvider>
);
}