app menu window
This commit is contained in:
7
src/routes/app-menu/tabs/friends.svelte
Normal file
7
src/routes/app-menu/tabs/friends.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script>
|
||||
import { appData } from "../../../events/app-data";
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<p>{$appData?.user?.name}'s friends</p>
|
||||
</div>
|
||||
21
src/routes/app-menu/tabs/preferences.svelte
Normal file
21
src/routes/app-menu/tabs/preferences.svelte
Normal file
@@ -0,0 +1,21 @@
|
||||
<script>
|
||||
import { invoke } from "@tauri-apps/api/core";
|
||||
import { appData } from "../../../events/app-data";
|
||||
</script>
|
||||
|
||||
<div class="size-full flex flex-col justify-between">
|
||||
<div>
|
||||
<p>{$appData?.user?.name}'s preferences</p>
|
||||
</div>
|
||||
<div class="w-full flex flex-row justify-between">
|
||||
<div></div>
|
||||
<div>
|
||||
<button
|
||||
class="btn btn-error btn-sm btn-soft"
|
||||
onclick={async () => {
|
||||
await invoke("quit_app");
|
||||
}}>Quit Friendolls</button
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
7
src/routes/app-menu/tabs/your-dolls.svelte
Normal file
7
src/routes/app-menu/tabs/your-dolls.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script>
|
||||
import { appData } from "../../../events/app-data";
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<p>{$appData?.user?.name}</p>
|
||||
</div>
|
||||
Reference in New Issue
Block a user