-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from jpcmf/develop
Develop to Main
- Loading branch information
Showing
4 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import Link from "next/link"; | ||
import Image from "next/image"; | ||
import { Container, Flex, Text } from "@chakra-ui/react"; | ||
|
||
export default function Error404() { | ||
return ( | ||
<Container minHeight="100vh" display="flex" justifyContent="center" alignItems="center" flexDirection="column"> | ||
<Flex marginBottom="4"> | ||
<Image src="/error404.gif" alt="404 Page Not Found" width={475} height={267} quality={80} /> | ||
</Flex> | ||
<Text as="h1" fontSize="4xl" fontWeight="bold" textAlign="center" color="red.500"> | ||
404 Página Não Encontrada | ||
</Text> | ||
<Text as="h2" fontSize="2xl" fontWeight="bold"> | ||
Oops! Algo deu errado. | ||
</Text> | ||
<Text as="p" marginTop="4" fontSize="lg" textAlign="center"> | ||
A página que você está procurando pode ter sido removida ou está temporariamente indisponível. | ||
</Text> | ||
<Flex marginTop="4"> | ||
<Link href="/">Voltar para a página inicial</Link> | ||
</Flex> | ||
</Container> | ||
); | ||
} |