Update demo
This commit is contained in:
parent
d18e7c16e7
commit
3fea4bc057
5 changed files with 19 additions and 49 deletions
|
@ -1,14 +1,6 @@
|
|||
import { defineConfig } from 'astro/config';
|
||||
import vue from '@astrojs/vue';
|
||||
import { defineConfig } from 'astro/config'
|
||||
|
||||
export default defineConfig({
|
||||
vite: {
|
||||
server: {
|
||||
hmr: false
|
||||
}
|
||||
},
|
||||
integrations: [vue()],
|
||||
devToolbar: {
|
||||
enabled: false
|
||||
}
|
||||
});
|
||||
vite: {server: {hmr: false}},
|
||||
devToolbar: {enabled: false}
|
||||
})
|
BIN
test/bun.lockb
Executable file
BIN
test/bun.lockb
Executable file
Binary file not shown.
|
@ -11,11 +11,9 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.2",
|
||||
"@astrojs/vue": "^4.5.0",
|
||||
"@minpluto/zorn": "../",
|
||||
"astro": "^4.14.2",
|
||||
"typescript": "^5.5.4",
|
||||
"vue": "^3.4.38"
|
||||
"typescript": "^5.5.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"sass-embedded": "^1.77.8"
|
||||
|
|
|
@ -4,16 +4,6 @@ import Default from 'src/layouts/Default.astro'
|
|||
|
||||
// Components
|
||||
import {Zorn} from '@minpluto/zorn'
|
||||
import Info from '@components/Info.astro'
|
||||
import Switcher from '@components/Switcher.astro'
|
||||
|
||||
// Icons
|
||||
import {
|
||||
ArrowUpRight,
|
||||
NavArrowLeft,
|
||||
SwitchOff,
|
||||
NavArrowRight
|
||||
} from '@iconoir/vue'
|
||||
---
|
||||
|
||||
<Default Page="/" Title="Ennie and Yoyki: Non-Girly Games" Description="Created by Daniyar Yambushev">
|
||||
|
@ -28,16 +18,16 @@ import {
|
|||
<div id="settings" class="vc-menu">
|
||||
<button>Stats for Geeks</button>
|
||||
<hr/>
|
||||
<button>Open Video URL <ArrowUpRight/></button>
|
||||
<button>Download <ArrowUpRight/></button>
|
||||
<button>Embed <ArrowUpRight/></button>
|
||||
<button>Open Video URL <i class="iconoir-arrow-up-right"></i></button>
|
||||
<button>Download <i class="iconoir-arrow-up-right"></i></button>
|
||||
<button>Embed <i class="iconoir-arrow-up-right"></i></button>
|
||||
<hr/>
|
||||
<button id="has-switch">Milieu <SwitchOff/></button>
|
||||
<button>Close Captions <NavArrowRight/></button>
|
||||
<button onclick="PlayerMenu_Quality()">Quality <NavArrowRight/></button>
|
||||
<button id="has-switch">Milieu <i class="iconoir-switch-off"></i></button>
|
||||
<button>Close Captions <i class="iconoir-nav-arrow-right"></i></button>
|
||||
<button onclick="PlayerMenu_Quality()">Quality <i class="iconoir-nav-arrow-right"></i></button>
|
||||
</div>
|
||||
<div id="quality-changer" class="vc-menu">
|
||||
<button onclick="OpenZornMenu()"><span style="display: flex; align-items: center;"><NavArrowLeft/> Back</span></button>
|
||||
<button onclick="OpenZornMenu()"><span style="display: flex; align-items: center;"><i class="iconoir-nav-arrow-left"></i> Back</span></button>
|
||||
<button>1080p</button>
|
||||
<button>720p</button>
|
||||
<button>360p</button>
|
||||
|
|
|
@ -4,16 +4,6 @@ import Default from 'src/layouts/Default.astro'
|
|||
|
||||
// Components
|
||||
import {Zorn} from '@minpluto/zorn'
|
||||
import Info from '@components/Info.astro'
|
||||
import Switcher from '@components/Switcher.astro'
|
||||
|
||||
// Icons
|
||||
import {
|
||||
ArrowUpRight,
|
||||
NavArrowLeft,
|
||||
SwitchOn,
|
||||
NavArrowRight
|
||||
} from '@iconoir/vue'
|
||||
---
|
||||
|
||||
<Default Title="Islandia" Description="Created by Vadim Sherbakov">
|
||||
|
@ -29,16 +19,16 @@ import {
|
|||
<div id="settings" class="vc-menu">
|
||||
<button>Stats for Geeks</button>
|
||||
<hr/>
|
||||
<button>Open Video URL <ArrowUpRight/></button>
|
||||
<button>Download <ArrowUpRight/></button>
|
||||
<button>Embed <ArrowUpRight/></button>
|
||||
<button>Open Video URL <i class="iconoir-arrow-up-right"></i></button>
|
||||
<button>Download <i class="iconoir-arrow-up-right"></i></button>
|
||||
<button>Embed <i class="iconoir-arrow-up-right"></i></button>
|
||||
<hr/>
|
||||
<button id="has-switch">Milieu <SwitchOn/></button>
|
||||
<button>Close Captions <NavArrowRight/></button>
|
||||
<button onclick="PlayerMenu_Quality()">Quality <NavArrowRight/></button>
|
||||
<button id="has-switch">Milieu <i class="iconoir-switch-on"></i></button>
|
||||
<button>Close Captions <i class="iconoir-nav-arrow-right"></i></button>
|
||||
<button onclick="PlayerMenu_Quality()">Quality <i class="iconoir-nav-arrow-right"></i></button>
|
||||
</div>
|
||||
<div id="quality-changer" class="vc-menu">
|
||||
<button onclick="OpenZornMenu()"><span style="display: flex; align-items: center;"><NavArrowLeft/> Back</span></button>
|
||||
<button onclick="OpenZornMenu()"><span style="display: flex; align-items: center;"><i class="iconoir-nav-arrow-left"></i> Back</span></button>
|
||||
<button>1080p</button>
|
||||
<button>720p</button>
|
||||
<button>360p</button>
|
||||
|
|
Loading…
Reference in a new issue