From efead8030b54165f95cfa1967553fb992b699a2e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 13:49:13 +0000 Subject: [PATCH] Add src/app/application-form/page.tsx --- src/app/application-form/page.tsx | 175 ++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 src/app/application-form/page.tsx diff --git a/src/app/application-form/page.tsx b/src/app/application-form/page.tsx new file mode 100644 index 0000000..a50c047 --- /dev/null +++ b/src/app/application-form/page.tsx @@ -0,0 +1,175 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import ButtonTextShift from '@/components/button/ButtonTextShift/ButtonTextShift'; +import { FileText, DollarSign } from "lucide-react"; + +export default function ApplicationFormPage() { + const handleFormSubmit = (e: React.FormEvent) => { + e.preventDefault(); + // In a real application, you would handle form submission here, e.g., send data to an API + alert("Application submitted! Please proceed to payment."); + }; + + return ( + + + +
+
+

Application Form

+

+ Complete the form below to apply for your dream property. +

+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +

+ Your application has been received! Please proceed to the payment section to finalize your submission. +

+ +
+

Application Fee

+

+ A non-refundable application fee of $60 USD is required to process your application. This fee covers administrative costs and a preliminary review of your submission. +

+

+ Click the button below to complete your payment securely via Flutterwave. +

+
+ +
+
+
+
+
+ + +
+ ); +}