Fix ESLint issues across codebase

- Replace 'any' types with proper TypeScript interfaces
- Fix unescaped apostrophe in not-found page
- Convert actionTypes constant to type definition to fix unused variable
- Optimize font loading using next/font instead of external links
- Improve type safety and remove linting warnings
This commit is contained in:
Derek Slenk 2025-06-29 17:55:13 -04:00
parent 9619cf2bf9
commit d03121001a
8 changed files with 2341 additions and 20 deletions

6
.eslintrc.json Normal file
View file

@ -0,0 +1,6 @@
{
"extends": [
"next/core-web-vitals",
"next/typescript"
]
}