From ecb2a8857e5fd1922d14fbcd6cce71725296531b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 31 Mar 2026 21:25:23 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index dcca3c2..a32da87 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -180,6 +180,10 @@ export default function LandingPage() { inputPlaceholder="Enter your email address" buttonText="Start Registration Chatbot" termsText="By registering, you confirm that we will send your information securely to our clinic and your provided email." + onSubmit={(email) => { + console.log("Sending appointment details to:", email); + alert("Appointment details have been sent to " + email + " and our clinic staff."); + }} /> @@ -219,4 +223,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1