strudel/website/src/pages/index.astro
Jade (Rose) Rowland 5ca9afa9e8 restored
2024-04-15 19:53:12 -04:00

16 lines
408 B
Plaintext

---
import HeadCommon from '../components/HeadCommon.astro';
import { Repl } from '../repl/Repl';
---
<html lang="en" class="m-0 dark">
<head>
<HeadCommon />
<title>Strudel REPL</title>
</head>
<body class="h-app-height bg-background m-0">
<Repl client:only="react" />
<a rel="me" href="https://social.toplap.org/@strudel" target="_blank" class="hidden">mastodon</a>
</body>
</html>