mirror of
https://github.com/tale/headplane.git
synced 2026-08-20 18:02:17 +00:00
33 lines
638 B
TypeScript
33 lines
638 B
TypeScript
export default function Index() {
|
|
return (
|
|
<div style={{ fontFamily: 'system-ui, sans-serif', lineHeight: '1.8' }}>
|
|
<h1>Welcome to Remix</h1>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
target='_blank'
|
|
href='https://remix.run/tutorials/blog'
|
|
rel='noreferrer'
|
|
>
|
|
15m Quickstart Blog Tutorial
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
target='_blank'
|
|
href='https://remix.run/tutorials/jokes'
|
|
rel='noreferrer'
|
|
>
|
|
Deep Dive Jokes App Tutorial
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a target='_blank' href='https://remix.run/docs' rel='noreferrer'>
|
|
Remix Docs
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
)
|
|
}
|