-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpage.tsx
33 lines (31 loc) · 1 KB
/
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
import { Page, Text, Code, Link, List } from '@vercel/examples-ui'
export default function Home() {
return (
<Page className="flex flex-col gap-12">
<section className="flex flex-col gap-6">
<Text variant="h1">🖤 SanityPress</Text>
<Text>
A fully customizable Next.js and Sanity starter template with Tailwind
CSS and pre-built schema for rapid website development.
</Text>
</section>
<section className="flex flex-col gap-3">
<Text variant="h2">🚀 Get started in minutes</Text>
<List>
<li>
<Link href="https://sanitypress.dev/">Live Demo</Link>
</li>
<li>
<Link href="https://sanitypress.dev/docs">SanityPress Docs</Link>
</li>
<li>
<Link href="https://github.com/nuotsu/sanitypress">
GitHub Repo
</Link>{' '}
(<code>nuotsu/sanitypress</code>)
</li>
</List>
</section>
</Page>
)
}