-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpage.tsx
More file actions
31 lines (26 loc) · 791 Bytes
/
page.tsx
File metadata and controls
31 lines (26 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { Metadata } from 'next';
import BackButton from '@web/modules/shared/components/client/BackButton';
import { NoteBlockWorldLogo } from '@web/modules/shared/components/NoteBlockWorldLogo';
import About from './about.mdx';
export const metadata: Metadata = {
title: 'About',
};
const AboutPage = () => {
return (
<>
<article className='max-w-screen-md mx-auto mb-36'>
<NoteBlockWorldLogo
size={112}
orientation='horizontal'
className='float-right'
/>
<BackButton className='text-zinc-500 hover:text-zinc-400 text-sm'>
{'< Back'}
</BackButton>
<h1 className='text-4xl font-bold mt-16 mb-12'>About Us</h1>
<About />
</article>
</>
);
};
export default AboutPage;