Skip to content

Commit

Permalink
Use new layout options to get two-column setup
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeseast committed Apr 4, 2024
1 parent 3c90d03 commit 891d39b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/routes/app/upload/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<script lang="ts">
import "@/style/kit.css";
import MainLayout from "@/lib/components/MainLayout.svelte";
import SignedIn from "@/lib/components/common/SignedIn.svelte";
import Documents from "../sidebar/Documents.svelte";
import Projects from "../sidebar/Projects.svelte";
</script>

<MainLayout>
<svelte:fragment slot="navigation">
<Documents />
<SignedIn>
<Projects />
</SignedIn>
</svelte:fragment>

<slot slot="content" />
</MainLayout>

0 comments on commit 891d39b

Please sign in to comment.