feat: switch to sidebase/nuxt !

This commit is contained in:
valere
2023-03-09 19:40:02 +01:00
parent 63b895633b
commit bab74dd088
86 changed files with 18165 additions and 5562 deletions

30
app.vue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<div>
<Head>
<Title>Pegaz.io - docker-compose cli superset</Title>
<Meta charset="UTF-8" />
<Meta name="viewport" content="width=device-width" />
<Link
rel="icon"
type="image/svg+xml"
href="https://raw.githubusercontent.com/valerebron/pegaz/master/docs/pegaz.svg"
/>
<Link rel="canonical" href="https://pegaz.io" />
<Meta property="og:title" content="pegaz, deploy stack on the go" />
<Meta
property="og:image"
content="https://raw.githubusercontent.com/valerebron/pegaz/master/docs/pegaz.svg"
/>
<Meta property="og:site_name" content="Pegaz.io" />
<Meta name="description" content="Extending docker-compose functionalities and control multiple docker-compose.yml configurations"/>
<Meta name="viewport" content="width=device-width, initial-scale=1.0" />
</Head>
<NuxtPage />
</div>
</template>
<style lang="postcss">
html {
@apply bg-slate-100;
}
</style>