mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-20 03:16:46 -07:00
19 lines
411 B
Vue
19 lines
411 B
Vue
<script setup>
|
|
import DefaultTheme from 'vitepress/theme';
|
|
import StatusLine from './components/StatusLine.vue';
|
|
import BlinkingCursor from './components/BlinkingCursor.vue';
|
|
|
|
const { Layout } = DefaultTheme;
|
|
</script>
|
|
|
|
<template>
|
|
<Layout>
|
|
<template #home-hero-info-after>
|
|
<BlinkingCursor />
|
|
</template>
|
|
<template #layout-bottom>
|
|
<StatusLine />
|
|
</template>
|
|
</Layout>
|
|
</template>
|