Add src/app/portfolio/web-development/page.tsx

This commit is contained in:
2026-03-11 14:15:09 +00:00
parent bf528e500a
commit e8b1de766f

View File

@@ -0,0 +1,125 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import TextAbout from "@/components/sections/about/TextAbout";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
export default function PortfolioWebDevelopment() {
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: "#" },
{ name: "Services", id: "#" },
{ name: "About", id: "#" },
{ name: "Contact", id: "#" }
]}
button={{
text: "Start a Project", href: "#contact"
}}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
title="High-Performance Websites"
description="Modern, conversion-focused web solutions built with cutting-edge technology. Every website is optimized for speed, scalability, and user experience to drive business growth."
background={{ variant: "glowing-orb" }}
kpis={[
{ value: "100%", label: "Lighthouse Score" },
{ value: "<2s", label: "Load Time" },
{ value: "∞", label: "Scalability" }
]}
enableKpiAnimation={true}
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/screenshot-of-a-high-end-modern-business-1773232935942-84f134d4.png?_wi=1"
imageAlt="Modern Business Website"
imagePosition="right"
mediaAnimation="slide-up"
/>
</div>
<div id="about" data-section="about">
<TextAbout
tag="Our Approach"
tagAnimation="slide-up"
title="We build websites that don't just look beautiful—they convert. Every pixel is purposeful, every interaction is optimized, and every page is architected for performance and growth."
useInvertedBackground={false}
buttons={[
{ text: "Back to Home", href: "/" }
]}
buttonAnimation="slide-up"
/>
</div>
<div id="projects" data-section="projects">
<ProductCardOne
title="Website Projects"
description="A selection of high-performance web solutions that deliver results."
tag="Recent Work"
tagAnimation="slide-up"
products={[
{
id: "1", name: "Modern Business Website", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-high-end-modern-business-1773232935942-84f134d4.png?_wi=1", imageAlt: "High-Performance Business Website"
},
{
id: "2", name: "E-Commerce Platform", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/modern-web-interface-for-an-ai-content-g-1773232936048-fda19c95.png?_wi=1", imageAlt: "E-Commerce Platform"
},
{
id: "3", name: "SaaS Dashboard", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-sophisticated-automation-1773232936102-44b60f1d.png?_wi=1", imageAlt: "SaaS Dashboard Interface"
}
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Build?"
tagAnimation="slide-up"
title="Let's Create Your Next Web Success Story"
description="Whether you need a stunning portfolio, a high-converting landing page, or a complex web application, let's build something exceptional together."
buttons={[
{ text: "Start a Project", href: "https://mail.google.com/mail/u/0/#inbox?compose=CllgCKCJDpcNVLgLjnmzlfjhpdVpzlhHMczkBTgTPMlCJWbKpnvxftQMXCJXsLrmzvsghmMqHjV", onClick: () => window.open("https://mail.google.com/mail/u/0/#inbox?compose=CllgCKCJDpcNVLgLjnmzlfjhpdVpzlhHMczkBTgTPMlCJWbKpnvxftQMXCJXsLrmzvsghmMqHjV", "_blank") }
]}
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>
);
}