From 081bf13e041583c2415017b24d9411a0c6371d7a Mon Sep 17 00:00:00 2001 From: Matthias Meister Date: Fri, 3 Apr 2026 19:47:56 +0200 Subject: [PATCH] feat(a11y): add live region feedback for auth and billing flows --- app/auth/sign-in/page.tsx | 27 +++++++++++++++++++--- app/auth/sign-up/page.tsx | 20 +++++++++++++--- components/billing/manage-subscription.tsx | 6 +++++ components/billing/pricing-cards.tsx | 6 +++++ components/billing/topup-panel.tsx | 6 +++++ 5 files changed, 59 insertions(+), 6 deletions(-) diff --git a/app/auth/sign-in/page.tsx b/app/auth/sign-in/page.tsx index d93a6ad..3f36457 100644 --- a/app/auth/sign-in/page.tsx +++ b/app/auth/sign-in/page.tsx @@ -175,7 +175,14 @@ export default function SignInPage() { {error && ( -

{error}

+

+ {error} +

)}
@@ -194,7 +201,14 @@ export default function SignInPage() {
{socialMessage && ( -

{socialMessage}

+

+ {socialMessage} +

)}