mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
23 lines
814 B
HTML
23 lines
814 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sandbox — React Background</title>
|
|
<link rel="stylesheet" href="../styles.css" />
|
|
</head>
|
|
<body>
|
|
<a
|
|
id="home-link"
|
|
href="/"
|
|
class="fixed top-3 left-3 hidden text-xs font-mono text-neutral-600 hover:text-neutral-900 transition-colors bg-white/85 backdrop-blur-sm px-2.5 py-1 rounded-full border border-black/8 z-[9999]"
|
|
>← More examples</a
|
|
>
|
|
<script>
|
|
if (window.self === window.top) document.getElementById('home-link').style.display = 'inline';
|
|
</script>
|
|
<div id="root" style="width: 100vw; height: 100vh"></div>
|
|
<script type="module" src="./background.tsx"></script>
|
|
</body>
|
|
</html>
|