From d1ad88874f7f304e8d1923fa7b327ab3c3abf4c4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 11:31:13 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 140 ++++++++++++++--------------------------------- 1 file changed, 41 insertions(+), 99 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 647a15d..7712555 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,8 +11,17 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import PricingCardOne from '@/components/sections/pricing/PricingCardOne'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import { ShieldCheck, Users, Zap } from "lucide-react"; +import { useState } from 'react'; export default function LandingPage() { + const [isPaid, setIsPaid] = useState(false); + + const handlePayment = () => { + // Simulation of payment success + alert("Please transfer the payment to UPI ID: pranaymokashi45-1@oksbi. Once confirmed, we will enable your portal access."); + setIsPaid(true); + }; + return ( @@ -45,15 +50,12 @@ export default function LandingPage() {
-
- +
+
+

Portfolio Upload

+ {!isPaid ? ( +

Please complete your subscription payment to unlock portfolio uploading.

+ ) : ( + + )} +
@@ -154,14 +128,8 @@ export default function LandingPage() { useInvertedBackground={true} title="Get Started Today" description="Ready to scale your production? Let's talk about your requirements." - inputs={[ - { - name: "name", type: "text", placeholder: "Your Name"}, - { - name: "email", type: "email", placeholder: "Email Address"}, - ]} - textarea={{ - name: "message", placeholder: "Tell us about your needs..."}} + inputs={[{ name: "name", type: "text", placeholder: "Your Name" }, { name: "email", type: "email", placeholder: "Email Address" }]} + textarea={{ name: "message", placeholder: "Tell us about your needs..." }} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BWh3hiRS0N7XFyMRW0mRhVdZrx/a-sleek-dark-theme-support-dashboard-ui--1774610578818-e4aeef37.png" mediaAnimation="blur-reveal" /> @@ -170,34 +138,8 @@ export default function LandingPage() {