Skip to content

Commit

Permalink
chore(root): custom 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
hendraaagil committed May 25, 2021
1 parent fcee7ea commit c696260
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pages/404.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Box, Heading, Text } from '@chakra-ui/react';

const NotFound = () => (
<Box py={40} textAlign="center">
<Heading as="h1" mb={4} size="3xl">
404
</Heading>
<Text fontSize="2xl" fontWeight="600">
Halaman tidak ditemukan.
</Text>
</Box>
);

export default NotFound;

1 comment on commit c696260

@vercel
Copy link

@vercel vercel bot commented on c696260 May 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.