Skip to content

Commit

Permalink
Merge pull request #11 from nixrajput/dev
Browse files Browse the repository at this point in the history
UI Updates
  • Loading branch information
nixrajput authored Oct 28, 2024
2 parents 1ff2b60 + b949edb commit 19aa1e2
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions src/components/payment/MainSection.tsx
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
import ConstrainedBox from "@/components/core/constrained-box";
import ResponsiveBox from "@/components/core/ResponsiveBox";
import RazorPayButton from "@/components/common/razor-pay-button";

const PaymentMainSection = () => {
return (
<div
<ResponsiveBox
classNames="dark:bg-[var(--bgColor)] bg-[var(--bgColor)] dark:bg-grid-small-white/[0.2] bg-grid-small-white/[0.2] min-h-screen items-center justify-center relative overflow-hidden rounded-md"
id="payment"
className="relative flex flex-col dark:bg-[var(--bgColor)] bg-[var(--bgColor)] justify-center items-center w-screen h-screen p-4 m-0 overflow-hidden transition duration-300 ease-in-out"
>
<p className="text-center text-2xl lg:text-3xl font-semibold mt-4 max-w-screen-md">
Thank you for choosing me to work on your project - I appreciate your
trust and partnership!
</p>
<p className="text-center text-base mt-4 mb-8 max-w-screen-md">
Securely pay for your website, mobile app, or backend API development
project. I specialize in creating high-quality, customized solutions
tailored to your needs.
</p>
<ConstrainedBox classNames="px-4 py-8 z-20 items-center justify-center">
<p className="text-center text-2xl lg:text-3xl font-semibold mt-4 max-w-screen-md">
Thank you for choosing me to work on your project - I appreciate your
trust and partnership!
</p>
<p className="text-center text-base mt-4 mb-8 max-w-screen-md">
Securely pay for your website, mobile app, or backend API development
project. I specialize in creating high-quality, customized solutions
tailored to your needs.
</p>

<RazorPayButton />
</div>
<RazorPayButton />
</ConstrainedBox>
</ResponsiveBox>
);
};

Expand Down

0 comments on commit 19aa1e2

Please sign in to comment.