a73007388f
* bump Next in playground * convert legacy Link after Next.js bump * update yarn.lock * switch to npm workspaces * move `packages/playground-*` to `playgrounds/*` * use `npm` instead of `yarn` * sync package-lock.json * use node 20 for insiders releases
15 lines
502 B
HTML
15 lines
502 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Headless UI - Playground</title>
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
|
</head>
|
|
<body class="h-full w-full font-sans text-gray-900 antialiased">
|
|
<div class="h-full w-full" id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|