Files
netris-nestri/packages/web/src/layouts/Layout.astro
2025-07-25 15:20:38 +03:00

56 lines
1.4 KiB
Plaintext

---
import "../styles/global.css";
import "@fontsource/geist-sans/400.css";
import "@fontsource/geist-sans/500.css";
import "@fontsource/geist-sans/600.css";
import "@fontsource/geist-sans/700.css";
import "@fontsource/geist-sans/800.css";
import "@fontsource/geist-sans/900.css";
import "@fontsource-variable/geist-mono";
---
<!doctype html>
<html class="dark" lang="en">
<head>
<meta charset="utf-8" />
<meta name="color-scheme" content="dark light" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="hsl(0 0% 100%);"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content=" hsla(0, 0%, 4%, 1);"
/>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Nestri - Stream apps and games from the cloud</title>
</head>
<body class="bg-background-200 text-gray-1000">
<slot />
</body>
</html>
<style>
*,
*:before,
*:after {
box-sizing: border-box;
}
html,
body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
text-rendering: optimizeLegibility;
text-size-adjust: 100%;
font-family: "Geist Sans", sans-serif;
-webkit-font-smoothing: antialiased;
}
</style>