Add src/app/portfolio/page.tsx

This commit is contained in:
2026-06-02 16:30:28 +00:00
parent 0d78687378
commit e21e142936

103
src/app/portfolio/page.tsx Normal file
View File

@@ -0,0 +1,103 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import FooterBase from "@/components/sections/footer/FooterBase";
import { ArrowUpRight, Sparkles, Search, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
export default function PortfolioPage() {
const updatedNavItems = [
{ name: "Work", href: "/portfolio" },
{ name: "Services", href: "#services" },
{ name: "About", href: "#about" },
{ name: "Contact", href: "/contact" },
];
const updatedFooterColumns = [
{
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: "#" },
],
},
];
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={updatedNavItems}
button={{ text: "Get Started", href: "/contact" }}
/>
<div id="portfolio" data-section="portfolio">
<FeatureCardTwentySix
title="Our Portfolio & Case Studies"
description="Explore our award-winning projects and success stories. See how we help brands achieve their digital goals."
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Get a Quote", href: "/contact" }]}
buttonAnimation="slide-up"
cardClassName="!h-auto aspect-video"
features={[
{
title: "Umbra Skincare", description: "Luxury fragrance e-commerce platform with custom CRM integration. Achieved 150% ROI in first 6 months.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website case study", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Luxuria Travel", description: "Redesigned bespoke luxury travel experiences website, increasing bookings by 40%.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website case study", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Dental Care", description: "Developed a modern, patient-focused website for a premier dental practice, improving online appointment scheduling.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website case study", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Summit Roofing", description: "Created a lead-generating website for professional roofing services, resulting in a 25% increase in inquiries.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website case study", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Dubai Real Estate", description: "Designed a high-end platform for luxury property listings, driving significant engagement from international buyers.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website case study", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "AgentFlow AI", description: "Built an intuitive AI platform for real estate agents, streamlining workflows and enhancing client interactions.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "AgentFlow AI platform case study", buttonIcon: ArrowUpRight,
buttonHref: "#"},
]}
/>
</div>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={updatedFooterColumns}
/>
</ReactLenis>
</ThemeProvider>
);
}