feat: create sign in header

This commit is contained in:
Vinicius Souza 2024-10-24 08:31:33 -03:00
parent 1e2963af5e
commit 32f61c8ac6

View file

@ -1,6 +1,7 @@
import { Image, VStack } from "@gluestack-ui/themed";
import { Center, Image, Text, VStack } from "@gluestack-ui/themed";
import BackgroundImg from '@assets/background.png';
import Logo from '@assets/logo.svg';
export function SignIn() {
return (
@ -13,6 +14,13 @@ export function SignIn() {
w="$full"
h={624}
/>
<Center my="$24">
<Logo />
<Text fontSize="$sm" color="$gray100">
Treine a sua mente e o seu corpo
</Text>
</Center>
</VStack>
)
}