31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
---
|
|
import "../styles/app.css";
|
|
---
|
|
|
|
<!-- MainLayout.astro -->
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
href={`${import.meta.env.BASE_URL}favicon-96x96.png`}
|
|
sizes="96x96"
|
|
/>
|
|
<link rel="icon" type="image/svg+xml" href={`${import.meta.env.BASE_URL}favicon.svg`} />
|
|
<link rel="shortcut icon" href={`${import.meta.env.BASE_URL}favicon.ico`} />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
href={`${import.meta.env.BASE_URL}apple-touch-icon.png`}
|
|
/>
|
|
<meta name="apple-mobile-web-app-title" content="Edis Buzzer" />
|
|
<link rel="manifest" href={`${import.meta.env.BASE_URL}site.webmanifest`} />
|
|
<title>Edis Buzzer</title>
|
|
</head>
|
|
<body class="bg-surface text-on-surface antialiased transition-colors duration-300">
|
|
<slot />
|
|
</body>
|
|
</html>
|