From 7b2740bacf630ffcda8b5a47bcafcb676b9ca64d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 13:45:34 +0000 Subject: [PATCH] Switch to version 3: remove src/app/application-form/page.tsx --- src/app/application-form/page.tsx | 224 ------------------------------ 1 file changed, 224 deletions(-) delete mode 100644 src/app/application-form/page.tsx diff --git a/src/app/application-form/page.tsx b/src/app/application-form/page.tsx deleted file mode 100644 index 1da8ae1..0000000 --- a/src/app/application-form/page.tsx +++ /dev/null @@ -1,224 +0,0 @@ -"use client"; - -import React, { useState } from 'react'; -import { useRouter } from 'next/navigation'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import Link from 'next/link'; - -export default function ApplicationFormPage() { - const router = useRouter(); - const [formData, setFormData] = useState({ - name: '', - email: '', - phone: '', - occupation: '', - company: '', - propertyId: '', - document: null as File | null, - }); - - const handleInputChange = (e: React.ChangeEvent) => { - const { name, value } = e.target; - setFormData(prev => ({ ...prev, [name]: value })); - }; - - const handleFileChange = (e: React.ChangeEvent) => { - if (e.target.files && e.target.files[0]) { - setFormData(prev => ({ ...prev, document: e.target.files![0] })); - } - }; - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault(); - // In a real application, you would send formData to your backend here - console.log('Application Form Data Submitted:', formData); - router.push('/payment'); // Navigate to the payment page - }; - - const footerColumns = [ - { - title: "Company", items: [ - { label: "About Us", href: "/#about" }, - { label: "Our Services", href: "/#services" }, - { label: "Executive Team", href: "/#team" }, - { label: "Properties", href: "/#properties" }, - { label: "Contact", href: "/#contact" } - ] - }, - { - title: "Resources", items: [ - { label: "Investment Guide", href: "#" }, - { label: "Market Reports", href: "#" }, - { label: "FAQ", href: "#" }, - { label: "Blog", href: "#" } - ] - }, - { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" } - ] - }, - { - title: "Connect", items: [ - { label: "LinkedIn", href: "#" }, - { label: "Instagram", href: "#" }, - { label: "WhatsApp", href: "#" } - ] - } - ]; - - const navbarProps = { - brandName: "Luxe Properties", navItems: [ - { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Team", id: "team" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Application", id: "/application-form" }, - { name: "Contact", id: "contact" } - ], - button: { text: "Schedule Viewing", href: "#contact" } - }; - - return ( - - - -
-
-

Application Form

-

- Please fill out the form below to apply for your desired property. A non-refundable application fee of $60 is required to process your application. - You will be redirected to a secure payment page after submission. -

- -
-
-
- - -
-
- - -
-
- -
- - -
- -
-
- - -
-
- - -
-
- -
- - -
- -
- - -

Max file size: 5MB (PDF, JPG, PNG)

-
- - -
-
-
- - -
- ); -}