Add src/app/portfolio/page.tsx

This commit is contained in:
2026-05-14 23:21:05 +00:00
parent ace952ea3a
commit 10a1cf121c

View File

@@ -0,0 +1,40 @@
"use client";
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 } from "lucide-react";
export default function PortfolioPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/portfolio" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Services", id: "services" },
{ name: "Contact", id: "contact" },
]}
/>
<FeatureCardTwentySix
title="Our Portfolio"
description="Showcase of impactful digital projects for startups and small businesses."
textboxLayout="default"
features={[
{ title: "AI SaaS Platform", description: "Modern dashboard for AI-driven analytics", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", buttonIcon: ArrowUpRight, buttonHref: "#" },
{ title: "Eco-Startup Brand", description: "Sustainable product e-commerce store", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-2.webp", buttonIcon: ArrowUpRight, buttonHref: "#" },
{ title: "Fintech Mobile App", description: "High-security payment gateway interface", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-3.webp", buttonIcon: ArrowUpRight, buttonHref: "#" },
{ title: "Architectural Studio", description: "Minimalist visual portfolio site", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-4.webp", buttonIcon: ArrowUpRight, buttonHref: "#" },
]}
/>
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "Portfolio", href: "/portfolio" }, { label: "Testimonials", href: "/testimonials" }, { label: "Contact", href: "#contact" }] }
]}
/>
</ThemeProvider>
);
}