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

View File

@@ -66,10 +66,10 @@
--color-outline: #727677;
--color-outline-variant: #44494a;
/* Typography */
--font-headline: "Space Grotesk", sans-serif;
--font-body: "Inter", sans-serif;
--font-label: "Space Grotesk", sans-serif;
/* Typography — CSS variables set by next/font in layout.tsx */
--font-headline: var(--font-headline), "Space Grotesk", sans-serif;
--font-body: var(--font-body), "Inter", sans-serif;
--font-label: var(--font-headline), "Space Grotesk", sans-serif;
/* 0px border radius — enforced globally */
--radius: 0px;