-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jon Staab
committed
Aug 16, 2024
1 parent
bd8fcd3
commit 6796f1c
Showing
18 changed files
with
182 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="max-h-screen flex-grow overflow-auto bg-base-200"> | ||
<slot /> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="flex w-60 flex-col gap-1 bg-base-300"> | ||
<slot /> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script lang="ts"> | ||
import {fly} from "@lib/transition" | ||
import Icon from "@lib/components/Icon.svelte" | ||
import Page from "@lib/components/Page.svelte" | ||
import SecondaryNav from "@lib/components/SecondaryNav.svelte" | ||
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte" | ||
import SecondaryNavSection from "@lib/components/SecondaryNavSection.svelte" | ||
</script> | ||
|
||
<SecondaryNav> | ||
<SecondaryNavSection> | ||
<div in:fly> | ||
<SecondaryNavItem href="/spaces"> | ||
<Icon icon="widget" /> Spaces | ||
</SecondaryNavItem> | ||
</div> | ||
<div in:fly={{delay: 50}}> | ||
<SecondaryNavItem href="/themes"> | ||
<Icon icon="pallete-2" /> Themes | ||
</SecondaryNavItem> | ||
</div> | ||
</SecondaryNavSection> | ||
</SecondaryNav> | ||
|
||
<Page> | ||
<slot /> | ||
</Page> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<script lang="ts"> | ||
import {fly} from "@lib/transition" | ||
import Icon from "@lib/components/Icon.svelte" | ||
import Page from "@lib/components/Page.svelte" | ||
import SecondaryNav from "@lib/components/SecondaryNav.svelte" | ||
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte" | ||
import SecondaryNavHeader from "@lib/components/SecondaryNavHeader.svelte" | ||
import SecondaryNavSection from "@lib/components/SecondaryNavSection.svelte" | ||
</script> | ||
|
||
<SecondaryNav> | ||
<SecondaryNavSection> | ||
<div in:fly> | ||
<SecondaryNavItem href="/home"> | ||
<Icon icon="home-smile" /> Home | ||
</SecondaryNavItem> | ||
</div> | ||
<div in:fly={{delay: 50}}> | ||
<SecondaryNavItem href="/home/people"> | ||
<Icon icon="user-heart" /> People | ||
</SecondaryNavItem> | ||
</div> | ||
<div in:fly={{delay: 100}}> | ||
<SecondaryNavItem href="/home/notes"> | ||
<Icon icon="clipboard-text" /> Saved Notes | ||
</SecondaryNavItem> | ||
</div> | ||
<div in:fly={{delay: 150}}> | ||
<SecondaryNavHeader> | ||
Conversations | ||
<div class="cursor-pointer"> | ||
<Icon icon="add-circle" /> | ||
</div> | ||
</SecondaryNavHeader> | ||
</div> | ||
</SecondaryNavSection> | ||
</SecondaryNav> | ||
|
||
<Page> | ||
<slot /> | ||
</Page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.