Update config, dependencies and add icon

- Update next.config.ts and tsconfig.json configuration
- Update ContactInfo component
- Add app icon (SVG)
- Add blog image prompts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-01 19:33:48 +01:00
co-authored by Claude Opus 4.5
parent cd58dc5259
commit 2854a02afb
6 changed files with 541 additions and 39 deletions
+10 -3
View File
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -19,14 +23,17 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",