This commit is contained in:
Korbs 2024-09-07 03:34:02 -04:00
parent 0e59360957
commit 8c31194925
4 changed files with 16 additions and 12 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -1,6 +1,6 @@
{ {
"name": "minpluto", "name": "minpluto",
"version": "24.08.21", "version": "24.09.07",
"description": "An open source frontend alternative to YouTube and Twitch.", "description": "An open source frontend alternative to YouTube and Twitch.",
"repository": "https://ark.sudovanilla.org/MinPluto/MinPluto", "repository": "https://ark.sudovanilla.org/MinPluto/MinPluto",
"author": "Korbs <korbs@sudovanilla.org>", "author": "Korbs <korbs@sudovanilla.org>",
@ -38,11 +38,11 @@
"@astrojs/node": "^8.3.3", "@astrojs/node": "^8.3.3",
"@astrojs/vue": "^4.5.0", "@astrojs/vue": "^4.5.0",
"@iconoir/vue": "^7.8.0", "@iconoir/vue": "^7.8.0",
"@minpluto/polestar": "^0.0.51", "@minpluto/polestar": "^0.0.54-1",
"@minpluto/zorn": "^0.4.51", "@minpluto/zorn": "^0.4.51",
"@nurodev/astro-bun": "^1.1.5", "@nurodev/astro-bun": "^1.1.5",
"@supabase/supabase-js": "^2.45.3", "@supabase/supabase-js": "^2.45.3",
"astro": "^4.15.2", "astro": "^4.15.4",
"astro-tooltips": "^0.6.2", "astro-tooltips": "^0.6.2",
"sass": "^1.78.0" "sass": "^1.78.0"
} }

View file

@ -8,7 +8,7 @@
"@data/*": ["./web/tools/data/*"], "@data/*": ["./web/tools/data/*"],
"@layouts/*": ["./web/layouts/*"], "@layouts/*": ["./web/layouts/*"],
"@library/*": ["./web/tools/library/*"], "@library/*": ["./web/tools/library/*"],
"@player/*": ["./web/components/video-player/*"], "@root/*": ["./web/"],
"@styles/*": ["./web/styles/*"], "@styles/*": ["./web/styles/*"],
"@utils/*": ["./web/tools/utilities/*"] "@utils/*": ["./web/tools/utilities/*"]
} }

View file

@ -2,9 +2,12 @@
// Properties // Properties
const {Title} = Astro.props const {Title} = Astro.props
// Information
import {version} from "../../package.json"
// Components // Components
import Head from '@components/global/Head.astro' import Head from '@components/global/Head.astro'
import {Sidebar} from '@minpluto/polestar' import {MobileNavigation, Sidebar} from '@minpluto/polestar'
// Icons // Icons
import { import {
@ -19,8 +22,7 @@ import {
PlanetAlt, PlanetAlt,
Settings, Settings,
MediaVideoList, MediaVideoList,
LogOut, LogOut
OpenInBrowser
} from '@iconoir/vue' } from '@iconoir/vue'
--- ---
@ -29,11 +31,12 @@ import {
LogoPath="http://localhost:1930/images/logo/MinPluto - Logo.png" LogoPath="http://localhost:1930/images/logo/MinPluto - Logo.png"
ShowHeader ShowHeader
ShowVersion ShowVersion
Version={version}
FooterLinks FooterLinks
> >
<slot slot="header-items"> <slot slot="header-items">
<a href="#"><InputSearch/></a> <a title="Search" href="#"><InputSearch/></a>
<a href="#"><ProfileCircle/></a> <a title="Your Account" href="#"><ProfileCircle/></a>
</slot> </slot>
<slot slot="top-items"> <slot slot="top-items">
<a href="#"><PlanetAlt/> Home</a> <a href="#"><PlanetAlt/> Home</a>
@ -53,7 +56,8 @@ import {
</slot> </slot>
<slot slot="footer-items"> <slot slot="footer-items">
<a href="#"><LogOut/></a> <a title="Log Out" href="#"><LogOut/></a>
<a href="#"><Settings/></a> <a title="Settings" href="#"><Settings/></a>
</slot> </slot>
</Sidebar> </Sidebar>
<MobileNavigation/>