strudel/website/src/pages/index.astro
2023-12-28 20:48:59 +01:00

15 lines
310 B
Plaintext

---
import HeadCommonNext from '../components/HeadCommonNext.astro';
import { Repl } from '../repl/Repl';
---
<html lang="en" class="dark">
<head>
<HeadCommonNext />
<title>Strudel REPL</title>
</head>
<body class="h-app-height bg-background">
<Repl client:only="react" />
</body>
</html>