-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpage.tsx
37 lines (34 loc) · 856 Bytes
/
page.tsx
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
32
33
34
35
36
37
import Link from '@components/link'
export const metadata = {
title: 'About',
description: 'About this website.',
alternates: {
canonical: 'https://maxleiter.com/about',
},
}
const About = () => {
return (
<article>
<p>
This site is built on the{' '}
<Link external href="https://nextjs.com">
Next.js 13
</Link>{' '}
App Directory and is deployed via{' '}
<Link external href="https://vercel.com/home">
Vercel
</Link>
. The icons are from{' '}
<Link external href="https://feathericons.com/">
Feather Icons
</Link>
. You can view the source on{' '}
<Link external href="https://github.com/maxleiter/maxleiter.com">
GitHub
</Link>
.
</p>
</article>
)
}
export default About