owlboard-svelte/src/routes/+layout.svelte

22 lines
860 B
Svelte
Raw Normal View History

2023-06-12 21:50:47 +01:00
<script>
2023-07-07 11:27:28 +01:00
import '../app.css';
2023-08-18 21:02:03 +01:00
import { dev } from '$app/environment';
import DevBanner from '$lib/DevBanner.svelte';
2023-06-12 21:50:47 +01:00
</script>
2023-07-07 11:27:28 +01:00
2023-06-21 14:56:12 +01:00
<svelte:head>
2023-07-07 11:27:28 +01:00
<meta name="application-name" content="OwlBoard" />
<meta name="author" content="Frederick Boniface" />
<meta name="description" content="Get instant access to live train data, PIS codes, and location reference codes with OwlBoard. Built by railway staff, for railway staff your fastest route to accurate information." />
2023-07-07 11:27:28 +01:00
<meta name="viewport" content="width=device-width" />
<meta name="theme-color" content="#00b7b7" />
<link rel="icon" href="/images/icon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/images/app-icons/any/apple-192.png" />
<link rel="manifest" href="/manifest.json" />
<title>OwlBoard</title>
2023-06-21 14:56:12 +01:00
</svelte:head>
2023-08-18 21:02:03 +01:00
{#if dev}
<DevBanner />
{/if}
2023-07-07 11:27:28 +01:00
<slot />