This commit is contained in:
2026-02-14 10:51:48 +01:00
commit 0688bca82d
21 changed files with 12426 additions and 0 deletions

34
nuxt.config.ts Normal file
View File

@@ -0,0 +1,34 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-07-15',
devtools: { enabled: true },
modules: [
'@nuxtjs/tailwindcss',
'@nuxtjs/google-fonts',
],
googleFonts: {
families: {
'JetBrains Mono': [400, 500, 700],
'DM Sans': [400, 500, 700],
},
display: 'swap',
},
app: {
head: {
title: 'Bennet Gallein IT Solutions',
htmlAttrs: { lang: 'en' },
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: 'Bennet Gallein IT Solutions Software, Infrastructure & APIs' },
],
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
],
},
pageTransition: { name: 'page', mode: 'out-in' },
},
})