c9911cc262
New standalone apps/website (Nuxt 4) serving the public marketing site at dezky.local / www.dezky.local. The customer portal moves off the root domain to app.dezky.local only. Landing page ported from the Dezky design handoff: light theme, Danish default, hero variant A, with a working da/en toggle. Self-contained colour system threaded through components (utils/landingTokens.ts), full bilingual copy (utils/landingCopy.ts), and shared state (composables/useLanding.ts). Sections live under components/landing/* with the Node logo under components/brand/*. Wired into docker-compose (website service, volume, Traefik labels, network aliases) and bootstrap.sh (hosts list + service URLs).
26 lines
616 B
JSON
26 lines
616 B
JSON
{
|
|
"name": "@dezky/website",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Dezky public marketing site — dezky.com landing pages (Nuxt 4)",
|
|
"scripts": {
|
|
"dev": "nuxt dev --host 0.0.0.0 --port 3000",
|
|
"build": "nuxt build",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview",
|
|
"typecheck": "nuxt typecheck",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"nuxt": "^4.4.6",
|
|
"vue": "^3.5.0",
|
|
"vue-router": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.6.0",
|
|
"vue-tsc": "^3.2.6"
|
|
},
|
|
"packageManager": "pnpm@9.12.0"
|
|
}
|