diff --git a/.gitea/workflows/build-ssr.yaml b/.gitea/workflows/build-ssr.yaml new file mode 100644 index 0000000..88bbc59 --- /dev/null +++ b/.gitea/workflows/build-ssr.yaml @@ -0,0 +1,23 @@ +name: Gitea Actions Demo +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 + +on: + workflow_dispatch: + +#on: +# push: +# branches: +# - main + +jobs: + build-and-deploy: + runs-on: main + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: Build app + run: | + yarn + yarn generate + - name: Move result to /var/www/koptilnya.xyz + run: cp -r .output/. /var/www/koptilnya.xyz \ No newline at end of file diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 381ad4a..010717e 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,12 +1,13 @@ name: Gitea Actions Demo run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 + on: push: branches: - main jobs: - Deploy-koptilnya.xyz: + build-and-deploy: runs-on: main steps: - name: Check out repository code diff --git a/app.vue b/app.vue index 104fd3d..ce13b69 100644 --- a/app.vue +++ b/app.vue @@ -1,7 +1,147 @@ + + diff --git a/assets/styles.scss b/assets/styles.scss index 93bd3d3..39fd741 100644 --- a/assets/styles.scss +++ b/assets/styles.scss @@ -8,6 +8,12 @@ * { margin: 0; + font-family: "Montserrat", sans-serif; + font-optical-sizing: auto; + font-style: normal; + font-size: 14px; + font-weight: 400; + box-sizing: border-box; } html, @@ -16,42 +22,20 @@ body { height: 100%; } -#__nuxt { - height: 100%; +body { position: relative; - font-family: "Montserrat", sans-serif; - font-optical-sizing: auto; - font-weight: 100; - font-style: normal; - - /* background-image: radial-gradient(circle, var(--black), var(--chocolate-cosmos)); */ background-color: var(--black); - background-size: cover; color: var(--white-smoke); overflow: hidden; - display: flex; flex-direction: column; - align-items: center; justify-content: center; } -h1 { - text-align: center; - font-size: 72px; - line-height: 1; - text-transform: uppercase; - font-weight: 500; - background-clip: text; - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-image: linear-gradient(90deg, var(--beaver), var(--walnut-brown)); -} - -h6 { - color: var(--white-smoke); - font-size: 10px; - line-height: 1; - font-weight: 300; - opacity: 0.7; +#__nuxt { + padding: 16px; + width: 100%; + max-width: 800px; + margin-inline: auto; + overflow-y: auto; } \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index fbff051..0cd78cb 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -4,7 +4,7 @@ export default defineNuxtConfig({ modules: ['@nuxtjs/google-fonts'], googleFonts: { families: { - Montserrat: [300, 500], + Montserrat: [300, 400, 500, 700], }, }, css: ['@/assets/styles.scss'], diff --git a/public/dota.png b/public/dota.png new file mode 100644 index 0000000..cb304cf Binary files /dev/null and b/public/dota.png differ diff --git a/public/gitea.svg b/public/gitea.svg new file mode 100644 index 0000000..797d894 --- /dev/null +++ b/public/gitea.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/public/obs.png b/public/obs.png new file mode 100644 index 0000000..da1f5cf Binary files /dev/null and b/public/obs.png differ diff --git a/public/ts.png b/public/ts.png new file mode 100644 index 0000000..b65f2d3 Binary files /dev/null and b/public/ts.png differ