feat(pages): add contact page

This commit is contained in:
2025-11-19 22:03:35 +01:00
parent 0b65e17903
commit 10e51b5da4
7 changed files with 230 additions and 7 deletions

View File

@@ -5,6 +5,10 @@ export default defineNuxtConfig({
enabled: true,
vueDevTools: true,
telemetry: false,
timeline: {
enabled: true
}
},
modules: [
@@ -66,7 +70,6 @@ export default defineNuxtConfig({
}
},
turnstile: {
siteKey: '', // Overridden by NUXT_PUBLIC_TURNSTILE_SITE_KEY
addValidateEndpoint: true
},
runtimeConfig: {
@@ -76,5 +79,5 @@ export default defineNuxtConfig({
public: {
apiBase: process.env.NUXT_PUBLIC_API_BASE || 'http://localhost:3100/api',
}
},
}
});