This commit is contained in:
2025-06-04 14:04:38 +01:00
parent e24316d07e
commit b02f2b2303
4 changed files with 12 additions and 1 deletions

View File

@@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>

4
src/lib/assets/logo.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -1,11 +1,19 @@
<script lang="ts">
import logoUrl from "$lib/assets/logo.svg";
const { children } = $props();
</script>
<svelte:head>
<title>Study Spaces</title>
<link rel="icon" href={logoUrl} />
</svelte:head>
{@render children?.()}
<style>
:global(body) {
box-sizing: border-box;
margin: 0;
padding: 0;
}