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. +

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