Add src/app/portfolio/page.tsx

This commit is contained in:
2026-06-04 15:40:21 +00:00
parent a37d25b48d
commit 060db70d00

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

@@ -0,0 +1,113 @@
"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 TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
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: "Portfolio", href: "/portfolio" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", href: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<FeatureCardTwentySix
title="Our Portfolio & Case Studies"
description="Explore a selection of our award-winning projects and see the impact we've made for our clients."
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", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Umbra Skincare website design", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Luxuria Travel", description: "Bespoke luxury travel experiences website", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", imageAlt: "Luxuria Travel website design", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Dental Care", description: "Premier dental practice website design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", imageAlt: "Luxury Dental Care website", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Summit Roofing", description: "Professional roofing services digital presence", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", imageAlt: "Summit Roofing website", buttonIcon: ArrowUpRight,
buttonHref: "#"},
{
title: "Dubai Real Estate", description: "Luxury property listings and investment portal", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-5.webp", imageAlt: "Dubai Real Estate website", buttonIcon: ArrowUpRight,
buttonHref: "#"},
]}
/>
<TestimonialCardTwo
title="What Our Clients Say"
description="Hear directly from the businesses we've helped succeed."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
testimonials={[
{
id: "1", name: "Maria Santos", role: "CEO, Luxuria Travel", testimonial: "Medusa AI completely transformed our online presence. Their work on our website and digital strategy has been phenomenal, leading to a significant increase in bookings.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Maria Santos"
},
{
id: "2", name: "John Doe", role: "Marketing Director, Umbra Skincare", testimonial: "The case studies Medusa AI developed for us were instrumental in securing new partnerships. Their analytical approach and compelling storytelling truly set them apart.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "John Doe"
},
{
id: "3", name: "Emily White", role: "Founder, Summit Roofing", testimonial: "Working with Medusa AI was a game-changer. Our new website showcases our services perfectly, and their case studies accurately highlight our project successes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Emily White"
}
]}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Portfolio", 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>
);
}