Add catchphrases into about page

This commit is contained in:
Daniele Pancottini
2023-01-02 19:10:29 +01:00
parent 8e51ad7cd7
commit 23491e2ec2
10 changed files with 210 additions and 104 deletions

15
site/pages/news.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { Layout } from '@components/common'
import { Text } from '@components/ui'
export default function News() {
return (
<div className="max-w-2xl mx-8 sm:mx-auto py-20 flex flex-col items-center justify-center fit">
<Text variant="heading">Not Found</Text>
<Text className="">
The requested page doesn't exist or you don't have access to it.
</Text>
</div>
)
}
News.Layout = Layout