Add src/app/portfolio/page.tsx

This commit is contained in:
2026-03-11 14:11:59 +00:00
parent 9c060dbce3
commit a07d6223db

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

@@ -0,0 +1,116 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroSplit from "@/components/sections/hero/HeroSplit";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function PortfolioPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="compact"
sizing="largeSmall"
background="blurBottom"
cardStyle="outline"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Abdul Rafay"
navItems={[
{ name: "Work", id: "projects" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Portfolio", id: "/portfolio" }
]}
button={{
text: "Start a Project", href: "#contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplit
title="Complete Project Portfolio"
description="A showcase of intelligent systems, automation workflows, and high-performance digital products built for businesses across industries."
background={{ variant: "glowing-orb" }}
tag="Portfolio"
tagAnimation="slide-up"
buttons={[
{ text: "Start Your Project", href: "#contact" }
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/a-sleek-ai-automation-dashboard-interfac-1773232935194-8f25812e.png"
imageAlt="Portfolio Showcase"
imagePosition="right"
mediaAnimation="slide-up"
/>
</div>
<div id="projects" data-section="projects">
<ProductCardOne
title="Featured Projects"
description="A curated collection of automation systems, AI solutions, and modern web products that deliver measurable business impact."
tag="All Projects"
tagAnimation="slide-up"
products={[
{
id: "1", name: "Automation Dashboard", price: "Custom Enterprise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-sophisticated-automation-1773232936102-44b60f1d.png", imageAlt: "Sophisticated Automation Dashboard with real-time analytics and workflow monitoring"
},
{
id: "2", name: "AI Content Generator", price: "Custom SaaS", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/modern-web-interface-for-an-ai-content-g-1773232936048-fda19c95.png", imageAlt: "Modern AI Content Generation Tool with intuitive interface and advanced features"
},
{
id: "3", name: "Modern Business Website", price: "Custom Design", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-high-end-modern-business-1773232935942-84f134d4.png", imageAlt: "High-End Modern Business Website with premium design and optimal user experience"
},
{
id: "4", name: "Lead Automation System", price: "Custom Automation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-sophisticated-automation-1773232936102-44b60f1d.png", imageAlt: "Lead Management Automation System with intelligent routing and qualification"
},
{
id: "5", name: "Customer Support Platform", price: "Custom Platform", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/modern-web-interface-for-an-ai-content-g-1773232936048-fda19c95.png", imageAlt: "Automated Customer Support Platform powered by AI and machine learning"
},
{
id: "6", name: "Performance Analytics Suite", price: "Custom Analytics", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-high-end-modern-business-1773232935942-84f134d4.png", imageAlt: "Comprehensive Business Analytics Suite with real-time insights and reporting"
}
]}
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Build?"
tagAnimation="slide-up"
title="Transform Your Business with Custom Automation"
description="Let's discuss how AI automation and intelligent systems can streamline your operations, reduce costs, and accelerate growth."
buttons={[
{ text: "Schedule Consultation", href: "mailto:contact@abdulrafay.com" },
{ text: "View Capabilities", href: "/#services" }
]}
buttonAnimation="slide-up"
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Abdul Rafay"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}