feat: nextjs13 boilerplate

This commit is contained in:
2023-09-17 13:41:24 -06:00
parent 2135a4b55d
commit bde70454dc
33 changed files with 24 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

+22
View File
@@ -0,0 +1,22 @@
import Typography from '@/components/ui/Typography'
import { css } from '@/styled-system/css'
import { Center } from '@/styled-system/jsx'
import { button } from '@/styled-system/recipes'
import NextLink from 'next/link'
import { type FC } from 'react'
const NotFoundPage: FC = () => {
return (
<Center
flexDirection="column"
width="100%"
height="calc(100vh - 60px - 72px)"
gap="medium"
>
<Typography variant="h1" className={css({ fontSize: '100px' })}>404</Typography>
<Typography variant="h2" color="text">El árbol que buscas no está aquí</Typography>
<NextLink className={button({})} href="/">Volver Al inicio</NextLink>
</Center>
)
}
export default NotFoundPage
+1
View File
@@ -0,0 +1 @@
EntGamers
Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

+1
View File
@@ -0,0 +1 @@
EntGamers
Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB