🎨 Improve styles (#673)

This commit is contained in:
Alejandra
2024-03-11 17:56:59 +01:00
committed by GitHub
parent 6b40df55d4
commit eed628a43e
5 changed files with 7 additions and 74 deletions

View File

@@ -1,4 +1,4 @@
import { Container, Text } from '@chakra-ui/react'
import { Box, Container, Text } from '@chakra-ui/react'
import { useQueryClient } from 'react-query'
import { createFileRoute } from '@tanstack/react-router'
@@ -15,11 +15,13 @@ function Dashboard() {
return (
<>
<Container maxW="full" pt={12}>
<Container maxW="full">
<Box pt={12} m={4}>
<Text fontSize="2xl">
Hi, {currentUser?.full_name || currentUser?.email} 👋🏼
</Text>
<Text>Welcome back, nice to see you again!</Text>
</Box>
</Container>
</>
)