feat: initial uploads and single study space view #31

Merged
gk1623 merged 4 commits from feat/initial-study-space-view into master 2025-06-04 17:20:21 +00:00
4 changed files with 12 additions and 1 deletions
Showing only changes of commit b02f2b2303 - Show all commits

View File

@@ -2,7 +2,6 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head% %sveltekit.head%
</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"> <script lang="ts">
import logoUrl from "$lib/assets/logo.svg";
const { children } = $props(); const { children } = $props();
</script> </script>
<svelte:head>
<title>Study Spaces</title>
<link rel="icon" href={logoUrl} />
</svelte:head>
{@render children?.()} {@render children?.()}
<style> <style>
:global(body) { :global(body) {
box-sizing: border-box;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB