5 Commits

Author SHA1 Message Date
ba9d39a054 Update src/app/portfolio/page.tsx 2026-03-11 14:12:25 +00:00
05c0a43e84 Update src/app/page.tsx 2026-03-11 14:12:24 +00:00
a07d6223db Add src/app/portfolio/page.tsx 2026-03-11 14:11:59 +00:00
9c060dbce3 Update src/app/page.tsx 2026-03-11 14:11:59 +00:00
9e12a4740a Merge version_3 into main
Merge version_3 into main
2026-03-11 13:32:38 +00:00
2 changed files with 121 additions and 6 deletions

View File

@@ -58,7 +58,7 @@ export default function LandingPage() {
{ text: "Start a Project", href: "#contact" } { text: "Start a Project", href: "#contact" }
]} ]}
buttonAnimation="slide-up" 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" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/a-sleek-ai-automation-dashboard-interfac-1773232935194-8f25812e.png?_wi=1"
imageAlt="Automation Dashboard Interface" imageAlt="Automation Dashboard Interface"
imagePosition="right" imagePosition="right"
mediaAnimation="slide-up" mediaAnimation="slide-up"
@@ -133,13 +133,13 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
products={[ products={[
{ {
id: "1", name: "Automation Dashboard", price: "Custom", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-sophisticated-automation-1773232936102-44b60f1d.png", imageAlt: "Automation Dashboard System" id: "1", name: "Automation 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: "Automation Dashboard System"
}, },
{ {
id: "2", name: "AI Content Generator", 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", imageAlt: "AI Content Generation Tool" id: "2", name: "AI Content Generator", 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: "AI Content Generation Tool"
}, },
{ {
id: "3", 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", imageAlt: "High-Performance Business Website" id: "3", 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"
} }
]} ]}
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
@@ -182,8 +182,7 @@ export default function LandingPage() {
title="Ready to Automate Your Business?" title="Ready to Automate Your Business?"
description="If you want to automate your operations, streamline workflows, or build a high-performance digital product, let's work together to transform your vision into reality." description="If you want to automate your operations, streamline workflows, or build a high-performance digital product, let's work together to transform your vision into reality."
buttons={[ buttons={[
{ text: "Send Message", href: "mailto:contact@abdulrafay.com" }, { text: "Send Message", 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") }
{ text: "Schedule Call", href: "#" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
background={{ variant: "animated-grid" }} background={{ variant: "animated-grid" }}

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?_wi=2"
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?_wi=2", 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?_wi=2", 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?_wi=2", 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?_wi=3", 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?_wi=3", 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?_wi=3", 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>
);
}