From 96fad445cf70577583bdc742666a7aba30faf6ab Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 13:42:13 +0000 Subject: [PATCH] Add src/app/confirmation/page.tsx --- src/app/confirmation/page.tsx | 90 +++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/app/confirmation/page.tsx diff --git a/src/app/confirmation/page.tsx b/src/app/confirmation/page.tsx new file mode 100644 index 0000000..ccba60e --- /dev/null +++ b/src/app/confirmation/page.tsx @@ -0,0 +1,90 @@ +"use client"; + +import React from 'react'; +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'; +import { CheckCircle } from 'lucide-react'; + +export default function ConfirmationPage() { + 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 themeProviderProps = { + defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "entrance-slide", borderRadius: "pill", contentWidth: "mediumSmall", sizing: "mediumLarge", background: "none", cardStyle: "glass-elevated", primaryButtonStyle: "primary-glow", secondaryButtonStyle: "radial-glow", headingFontWeight: "medium"}; + + 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", href: "/application-form" }, + { name: "Contact", id: "contact" } + ], + button: { text: "Schedule Viewing", href: "#contact" } + }; + + return ( + + + +
+
+ +

Application Confirmed!

+

+ Your application has been successfully submitted and payment confirmed. + We will review your details and contact you shortly. +

+ + Return to Home + +
+
+ + +
+ ); +}