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" }} 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}