-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add google analytics and google search engine and 404 page
- Loading branch information
Showing
2 changed files
with
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from 'react' | ||
import Link from 'next/link' | ||
import { Layout } from 'src/component/common' | ||
import { Button, Flex, Heading, Text } from '@pillar-ui/core' | ||
|
||
export default function Custom404() { | ||
return ( | ||
<Layout> | ||
<Flex style={{ maxWidth: '680px' }} justify="center" direction="column" items="center" gap="md" className="hero"> | ||
<Heading size="3xl" weight="bold"> | ||
404 - Page Not Found | ||
</Heading> | ||
<Text contrast="low" size="lg"> | ||
The page you're looking for has wandered into the digital abyss. But worry not! The UI guardians are here | ||
to guide you back. | ||
</Text> | ||
<Button as={Link} href="/"> | ||
Return to Home | ||
</Button> | ||
</Flex> | ||
</Layout> | ||
) | ||
} |
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