first release
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Xeovalyte 2023-02-09 20:17:22 +01:00
parent 6a116f40bb
commit 93dc92b56e
5 changed files with 2601 additions and 2284 deletions

View File

@ -7,7 +7,7 @@ pipeline:
username: xeovalyte
password:
from_secret: docker_password
repo: gitea.xeovalyte.dev/xeovalyte/website
repo: gitea.xeovalyte.dev/xeovalyte/portfolio
tags:
- latest
registry: gitea.xeovalyte.dev

View File

@ -16,29 +16,3 @@
@apply text-xl;
}
}
@layer utilities {
.perspective {
perspective: 100px;
}
.preserve-3d {
transform-style: preserve-3d;
}
.distance-1 {
transform: translateZ(-50px) scale(1.5);
}
.distance-2 {
transform: translateZ(-100px) scale(2);
}
.distance-3 {
transform: translateZ(-150px) scale(2.5);
}
.-distance-1 {
transform: translateZ(50px) scale(0.5);
}
}

View File

@ -7,7 +7,27 @@ export default defineNuxtConfig({
"nuxt-icons",
"@nuxtjs/robots",
"@nuxtjs/i18n",
"@nuxtjs/plausible",
],
plausible: {
domain: 'xeovalyte.com',
apiHost: 'https://plausible.xeovalyte.dev'
},
app: {
head: {
title: 'Xeovalyte | Timo Boomers Portfolio',
link: [
{
"rel": "icon",
"href": "/favicon.ico",
"type": "image/png"
}
],
meta: [
{ name: 'description', content: 'This is the official portfolio of Xeovalyte or Timo Boomers'}
]
}
},
i18n: {
baseUrl: 'https://xeovalyte.com',
locales: [

4831
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -8,10 +8,11 @@
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@nuxtjs/plausible": "^0.2.0",
"@nuxtjs/tailwindcss": "^6.2.0",
"@vueuse/core": "^9.8.2",
"@vueuse/nuxt": "^9.8.2",
"nuxt": "3.0.0",
"nuxt": "3.1.2",
"nuxt-icon": "^0.1.8",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2"
@ -20,7 +21,6 @@
"@nuxtjs/i18n": "^8.0.0-beta.9",
"@nuxtjs/robots": "^3.0.0",
"locomotive-scroll": "^4.1.4",
"motion": "^10.15.5",
"nuxt-icons": "^3.1.0"
}
}