From cd37a4e1866386346ed3986e0bb61986e43b27c4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 13:54:38 +0000 Subject: [PATCH] Add src/app/confirmation/page.tsx --- src/app/confirmation/page.tsx | 107 ++++++++++++++++++++++++++++++++++ 1 file changed, 107 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..f9ef2da --- /dev/null +++ b/src/app/confirmation/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import ButtonBounceEffect from '@/components/button/ButtonBounceEffect/ButtonBounceEffect'; +import { useRouter } from 'next/navigation'; +import { CheckCircle } from "lucide-react"; + +export default function ConfirmationPage() { + const router = useRouter(); + + return ( + + + +
+
+ +

Payment Successful!

+

+ Thank you for your payment. Your transaction has been completed, and a confirmation email has been sent to your registered address. +

+

+ What's next? You can now explore more properties or schedule a viewing. +

+ router.push('/')} + className="w-full max-w-xs" + type="button" + ariaLabel="Return to home page" + /> +
+
+ + +
+ ); +} \ No newline at end of file