This website is based on Nuxt 4.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install --shamefully-hoistStart the development server on http://localhost:3000
npm run devBuild the application for production:
npm run buildLocally preview production build:
npm run previewCheckout the deployment documentation for more information.
- General copy used throughout the website is located in
/i18n/locales/<locale>.json - Markdown-based content is in
/content/<content collection>/<locale>/<slug>.md(long documents like terms, privacy, objection pages) - JSON-based content is in
/content/<locale>_pages.json(general pages, programmatic content, data pages, etc.) - When to use i18n vs content: i18n = key-value translation, content = searchable, filterable, need metadata, etc.