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
18 changed files with 498 additions and 89 deletions
Showing only changes of commit b7a172d509 - Show all commits

View File

@@ -1,8 +1,6 @@
<script lang="ts">
import SpaceCard from "$lib/components/SpaceCard.svelte";
import defaultImg from "$lib/assets/study_space.png";
import { invalidate } from "$app/navigation";
import type { Table } from "$lib";
import crossUrl from "$lib/assets/cross.svg";
import Navbar from "$lib/components/Navbar.svelte";

View File

@@ -1,4 +1,5 @@
<script lang="ts">
import { goto } from "$app/navigation";
import Text from "$lib/components/inputs/Text.svelte";
import Textarea from "$lib/components/inputs/Textarea.svelte";
import Navbar from "$lib/components/Navbar.svelte";
@@ -6,7 +7,6 @@
import Button from "$lib/components/Button.svelte";
import Image from "$lib/components/inputs/Image.svelte";
import type { Table } from "$lib";
import { goto, invalidate } from "$app/navigation";
const { data } = $props();
const { supabase } = $derived(data);