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