SEO
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 30s

This commit is contained in:
2026-06-09 18:36:09 +02:00
parent 3da7424418
commit 09b44952df
23 changed files with 3652 additions and 8 deletions

View File

@@ -27,5 +27,20 @@ export default defineNuxtConfig({
vueI18n: './i18n.config.ts',
langDir: 'locales/'
},
app: {
head: {
htmlAttrs: { lang: 'en' },
bodyAttrs: { class: '' },
title: 'Aran Roig — Developer, Artist & Designer',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: 'Personal website of Aran Roig — developer, artist, and designer. Explore projects, blog posts, art gallery, and more.' },
{ name: 'author', content: 'Aran Roig' },
{ name: 'robots', content: 'index, follow' }
]
}
},
modules: ['@nuxtjs/i18n', '@nuxt/content', '@nuxt/image']
})