mirror of
https://codeberg.org/uzu/strudel
synced 2026-09-05 06:57:35 -04:00
31 lines
920 B
Plaintext
31 lines
920 B
Plaintext
---
|
|
import { pwaInfo } from 'virtual:pwa-info';
|
|
import '../styles/index.css';
|
|
|
|
const { BASE_URL } = import.meta.env;
|
|
const base = BASE_URL;
|
|
---
|
|
|
|
<!-- Global Metadata -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="favicon.ico" />
|
|
|
|
<meta
|
|
name="description"
|
|
content="Strudel is a music live coding environment for the browser, porting the TidalCycles pattern language to JavaScript."
|
|
/>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" href="/icons/apple-icon-180.png" sizes="180x180" />
|
|
<meta name="theme-color" content="#222222" />
|
|
|
|
<base href={base} />
|
|
|
|
<!-- Scrollable a11y code helper -->
|
|
<script src="./make-scrollable-code-focusable.js" is:inline></script>
|
|
|
|
<script src="/src/pwa.ts"></script>
|
|
{pwaInfo && <Fragment set:html={pwaInfo.webManifest.linkTag} />}
|