Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ba9d39a054 | |||
| 05c0a43e84 | |||
| a07d6223db | |||
| 9c060dbce3 | |||
| 9e12a4740a | |||
| 7e4ede4fda | |||
| fdd997a336 |
@@ -43,7 +43,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
title="I Build Intelligent Systems for the Internet"
|
||||
description="Automation, AI workflows, and high-performance digital products that help businesses scale faster and operate smarter."
|
||||
description="Help businesses automate 80% of manual tasks while reducing operational costs by up to 60%. AI workflows and automation systems that scale your operations without scaling your team."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
kpis={[
|
||||
{ value: "50+", label: "Automation Systems Built" },
|
||||
@@ -58,7 +58,7 @@ export default function LandingPage() {
|
||||
{ text: "Start a 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"
|
||||
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"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -133,13 +133,13 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
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"
|
||||
@@ -182,8 +182,7 @@ export default function LandingPage() {
|
||||
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."
|
||||
buttons={[
|
||||
{ text: "Send Message", href: "mailto:contact@abdulrafay.com" },
|
||||
{ text: "Schedule Call", href: "#" }
|
||||
{ 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") }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "animated-grid" }}
|
||||
@@ -200,4 +199,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
116
src/app/portfolio/page.tsx
Normal file
116
src/app/portfolio/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user