15 lines
425 B
TypeScript
15 lines
425 B
TypeScript
export default () => (
|
|
<section>
|
|
<img class="burger" src="/img/burger.png" width="200px" />
|
|
<h1>Hello, world!</h1>
|
|
<p>Welcome to <span class="hype">hype</span>!</p>
|
|
<p>If you're seeing this, something definitely went right.</p>
|
|
|
|
<ul>
|
|
<li><a href="/about">About This Website</a></li>
|
|
<li><a href="/js-test">JS Test</a></li>
|
|
<li><a href="/sse">SSE Demo</a></li>
|
|
</ul>
|
|
</section>
|
|
)
|