1
Fork 0
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

View file

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