22 lines
539 B
Vue
22 lines
539 B
Vue
<template>
|
|
<v-app>
|
|
<v-container style="max-width: 1440px" class="mb-7" color="transparent">
|
|
<main-nav />
|
|
|
|
<v-main>
|
|
<build-server-stats />
|
|
<currently-building />
|
|
<packages />
|
|
</v-main>
|
|
</v-container>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import MainNav from '@/components/MainNav.vue'
|
|
import BuildServerStats from '@/components/BuildServerStats.vue'
|
|
import Packages from '@/components/Packages.vue'
|
|
import CurrentlyBuilding from '@/components/CurrentlyBuilding.vue'
|
|
|
|
</script>
|