File tree 3 files changed +3
-3
lines changed
supabase/functions/send-auth-emails 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function AuthLayout({
13
13
< Link href = "/" className = "absolute top-8 left-8" >
14
14
< Logo />
15
15
</ Link >
16
- < div className = "container text-white h-screen flex items-center justify-center" >
16
+ < div className = "md: container text-white h-screen flex items-center justify-center" >
17
17
{ children }
18
18
</ div >
19
19
</ div >
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default async function SignupPage() {
57
57
return (
58
58
< div className = "flex min-h-screen items-center overflow-hidden" >
59
59
{ /* left side - Sign up form */ }
60
- < div className = "w-full xl:w-1/2 flex items-center justify-center p-8" >
60
+ < div className = "w-full xl:w-1/2 flex items-center justify-center lg: p-8" >
61
61
< div className = "w-full max-w-lg space-y-6 bg-black/50 backdrop-blur-sm border border-black-50 rounded-xl p-8 shadow-xl place-items-center" >
62
62
< div className = "text-center" >
63
63
< h1 className = "font-bold text-3xl mb-2" > Get started for free</ h1 >
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Deno.serve(async (req: Request): Promise<Response> => {
51
51
52
52
if ( email_action_type === 'signup' ) {
53
53
const redirect_to_url = `${ redirect_to } /login?onboarding=true` ;
54
- from = 'welcome <team@techblitz.dev>' ;
54
+ from = 'Welcome <team@techblitz.dev>' ;
55
55
html = await renderAsync (
56
56
React . createElement ( TechBlitzSignUpEmail , {
57
57
username : user [ 'user_metadata' ] . lang ,
You can’t perform that action at this time.
0 commit comments