mirror of
https://github.com/AbaTekNTNU/followspot-psn.git
synced 2025-12-06 13:54:58 +00:00
21 lines
568 B
Plaintext
21 lines
568 B
Plaintext
---
|
|
import Container from "../components/Container.svelte";
|
|
import "$lib/styles/app.css";
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
|
|
/>
|
|
<title>Followspot</title>
|
|
</head>
|
|
<body class="flex h-dvh w-screen items-center justify-center overflow-hidden">
|
|
<Container client:load />
|
|
</body>
|
|
</html>
|