File tree Expand file tree Collapse file tree
features/auth/components/login-form
shared/components/global/logo Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Outlet } from 'react-router';
33export function PublicLayout ( ) {
44 return (
55 < div className = "min-h-screen flex items-center justify-center " >
6- < main className = "w-full max-w-md bg-white ring-1 ring-zinc-200 dark:bg-zinc-700 dark:ring-1 dark:ring-zinc-600 p-6 rounded-lg shadow " >
6+ < main className = "w-full max-w-md p-6" >
77 < Outlet />
88 </ main >
99 </ div >
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ export function LoginHeader() {
77 < AppLogo className = "w-64" />
88 </ div >
99
10- < h1 className = "text-xl font-bold" > Faça login na sua conta. </ h1 >
10+ < h1 className = "text-xl font-bold" > OS PEDIDOS TE ESPERAM </ h1 >
1111
1212 < div className = "text-center text-sm" >
1313 Não possui uma conta?{ ' ' }
1414 < a href = "/" className = "underline underline-offset-4" >
15- Contate o adminstrador
15+ Entre para o beta gratuito
1616 </ a >
1717 </ div >
1818 </ div >
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export function LoginForm() {
4141 < SubmitingButton
4242 label = "Acessar"
4343 state = { isPending }
44- className = "bg-red-700 text-white font-bold hover:bg-red-800 "
44+ className = "bg-primary text-primary-foreground font-bold hover:bg-primary/90 "
4545 />
4646 </ div >
4747 </ div >
Original file line number Diff line number Diff line change 11import { cn } from '@/shared/utils' ;
2+ import logo from "../../../../assets/logo.png" ;
23
34interface AppLogoProps {
45 className ?: string ;
@@ -7,7 +8,7 @@ interface AppLogoProps {
78export function AppLogo ( { className } : AppLogoProps ) {
89 return (
910 < img
10- src = { "" }
11+ src = { logo }
1112 width = { 420 }
1213 height = { 400 }
1314 className = { cn ( 'w-full' , className ) }
You can’t perform that action at this time.
0 commit comments