add hypothetical folder for Topos V2
This commit is contained in:
5
topos-svelte/src/routes/+layout.svelte
Normal file
5
topos-svelte/src/routes/+layout.svelte
Normal file
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import '../app.css';
|
||||
</script>
|
||||
|
||||
<slot />
|
||||
13
topos-svelte/src/routes/+page.svelte
Normal file
13
topos-svelte/src/routes/+page.svelte
Normal file
@ -0,0 +1,13 @@
|
||||
<script>
|
||||
import Header from '$lib/components/Header.svelte';
|
||||
import Sidebar from '$lib/components/Sidebar.svelte';
|
||||
import Editor from '$lib/components/Editor.svelte';
|
||||
</script>
|
||||
|
||||
<div class="app-container">
|
||||
<Header />
|
||||
<div class="flex">
|
||||
<Sidebar />
|
||||
<Editor />
|
||||
</div>
|
||||
</div>
|
||||
5
topos-svelte/src/routes/documentation/+page.svelte
Normal file
5
topos-svelte/src/routes/documentation/+page.svelte
Normal file
@ -0,0 +1,5 @@
|
||||
<script lang="ts">
|
||||
</script>
|
||||
|
||||
|
||||
<h1>Documentation</h1>
|
||||
Reference in New Issue
Block a user