From 9c060dbce3d45a1b9f81c4929826e790d0ca6e8b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:11:59 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ea161a8..5398f75 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" }} -- 2.49.1 From a07d6223db4e29d69cf35ee2be54a40711c8e932 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:11:59 +0000 Subject: [PATCH 2/2] Add src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 116 +++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 src/app/portfolio/page.tsx diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx new file mode 100644 index 0000000..fbb9dfe --- /dev/null +++ b/src/app/portfolio/page.tsx @@ -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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1