From 739169773b228d991a50f6a023eb047efacdac84 Mon Sep 17 00:00:00 2001 From: shadcn Date: Wed, 14 Jun 2023 16:04:03 +0400 Subject: [PATCH] feat: implement styles for sign in and sign up forms --- app/sign-in/[[...sign-in]]/page.tsx | 42 +++++++++++++++++++++++---- app/sign-up/[[...sign-up]]/page.tsx | 44 ++++++++++++++++++++++++++--- 2 files changed, 77 insertions(+), 9 deletions(-) diff --git a/app/sign-in/[[...sign-in]]/page.tsx b/app/sign-in/[[...sign-in]]/page.tsx index 3b64227..a06c0c8 100644 --- a/app/sign-in/[[...sign-in]]/page.tsx +++ b/app/sign-in/[[...sign-in]]/page.tsx @@ -1,10 +1,42 @@ -import { SignIn } from '@clerk/nextjs' +import { ClerkLoaded, ClerkLoading, SignIn } from '@clerk/nextjs' -export default function Page() { +import { cn } from '@/lib/utils' +import { ExternalLink } from '@/components/external-link' +import { buttonVariants } from '@/components/ui/button' +import { IconSpinner } from '@/components/ui/icons' + +export default function SignInPage() { return ( -
-
- +
+
+ +
+ Loading... +
+
+ + +

+ Open source AI chatbot app built with{' '} + Next.js and{' '} + + Vercel KV + + . +

+
) diff --git a/app/sign-up/[[...sign-up]]/page.tsx b/app/sign-up/[[...sign-up]]/page.tsx index 38e2669..49f0245 100644 --- a/app/sign-up/[[...sign-up]]/page.tsx +++ b/app/sign-up/[[...sign-up]]/page.tsx @@ -1,10 +1,46 @@ -import { SignUp } from '@clerk/nextjs' +import { ClerkLoaded, ClerkLoading, SignUp } from '@clerk/nextjs' + +import { cn } from '@/lib/utils' +import { buttonVariants } from '@/components/ui/button' +import { ExternalLink } from '@/components/external-link' +import { IconSpinner } from '@/components/ui/icons' export default function Page() { return ( -
-
- +
+
+ +
+ Loading... +
+
+ + +

+ Open source AI chatbot app built with{' '} + Next.js and{' '} + + Vercel KV + + . +

+
)