Fix CI lint failures: add ESLint config, use next/font, fix JSX comment

- Add .eslintrc.json so next lint doesn't prompt interactively in CI
- Switch Google Fonts from <link> tags to next/font/google
- Wrap "// SECURE_NODE_7" in JSX expression to avoid comment parse error
This commit is contained in:
Julia McGhee
2026-03-20 20:27:13 +00:00
parent 3d61911868
commit 11f1365f75
4 changed files with 30 additions and 10 deletions

6
apps/web/.eslintrc.json Normal file
View File

@@ -0,0 +1,6 @@
{
"extends": ["next/core-web-vitals", "prettier"],
"rules": {
"no-console": "warn"
}
}