feat(landing): Add landing Nuxt page

This commit is contained in:
2026-01-03 10:19:39 +01:00
parent 0803b59f0f
commit b3311155c7
28 changed files with 13620 additions and 0 deletions

15
landing/eslint.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
export default withNuxt({
rules: {
'vue/html-self-closing': [
'error',
{
html: {
void: 'any'
}
}
]
}
})