Skip to content

Commit

Permalink
credits
Browse files Browse the repository at this point in the history
  • Loading branch information
michealparks committed Jan 11, 2025
1 parent c07c3ef commit f6c0b4a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/hooks/pages.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { goto } from '$app/navigation'
import { shuffle } from '../array'
import { modules } from '../../modules'

export const omit: string[] = []
export const omit: string[] = ['tubeman']

export const pages = [
...new Set(
Expand All @@ -12,7 +12,6 @@ export const pages = [
.filter((path) => !omit.includes(path))
),
]
console.log(pages)
shuffle(pages)

export const transitionPage = (direction: 1 | -1) => {
Expand Down
30 changes: 30 additions & 0 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,35 @@
<span class="text-xs">get zesty</span> 🤌
</a>
</div>

<div class="flex flex-col gap-2 pt-12 text-sm">
<div>
Emojis by <a
class="code"
href="https://emojikitchen.dev/"
target="_blank">Emoji Kitchen</a
>
</div>
<div>
Hot dog model by <a
class="code"
href="https://skfb.ly/oqMWM"
target="_blank">TadenStar</a
>
</div>
<div>
Powered by <a
class="code"
target="_blank"
href="https://svelte.dev">Svelte</a
>
and
<a
class="code"
target="_blank"
href="https://threlte.xyz">Threlte</a
>
</div>
</div>
</div>
</div>

0 comments on commit f6c0b4a

Please sign in to comment.