fix(web): hygiene — OG image/metadataBase, Header a11y text + nav flag, dead code
CI Pipeline with Test Management / 🧪 Run Tests & Generate Reports (push) Waiting to run
CI Pipeline with Test Management / 🐳 Docker Integration Tests (push) Blocked by required conditions
CI Pipeline with Test Management / 🏗️ Build Docker Image (push) Blocked by required conditions
CI Pipeline with Test Management / 📊 Generate Test Summary (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / 🧪 Run Tests & Generate Reports (push) Waiting to run
Test Reporting & Gherkin Analysis / 📊 Analyze Test Coverage (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / 🔄 Sync with Linear (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / ⚡ Performance Monitoring (push) Blocked by required conditions

- siteConfig.ogImage pointed to an existing asset; metadataBase added so
  relative OG/Twitter URLs resolve against the real origin instead of localhost
- Header sr-only menu label moved to common.json (a11y.openMenu/closeMenu);
  navigation primary styling driven by a NavigationItem.primary flag instead
  of brittle 'Kapcsolat' string comparisons
- remove dead code: lib/site-config.ts (unused hybrid config) and the
  unused, schema-divergent siteConfig.contact.form
- ContactConfig type cleaned up (address/form removed)

Closes MITHOME-77
This commit is contained in:
Do Siki
2026-08-22 12:12:48 +02:00
parent 4c2913e131
commit 9f1fb349c2
10 changed files with 31 additions and 524 deletions
+4
View File
@@ -20,5 +20,9 @@
"footer": {
"copyright": "© 2002{year} mozdIT Bt. Minden jog fenntartva.",
"address": "Szigetszentmiklós, Magyarország"
},
"a11y": {
"openMenu": "Főmenü megnyitása",
"closeMenu": "Főmenü bezárása"
}
}
+1
View File
@@ -16,6 +16,7 @@ const schemas = {
validation: object({ required: string, invalidEmail: string, minLength: string }),
staging: object({ banner: string }),
footer: object({ copyright: string, address: string }),
a11y: object({ openMenu: string, closeMenu: string }),
}),
home: object({
hero: object({ title: string, subtitle: string, description: string, trustBullets: array(string), cta: object({ primary: ctaLink, secondary: ctaLink }) }),
+4
View File
@@ -197,6 +197,10 @@ export interface CommonContent {
copyright: string
address: string
}
a11y: {
openMenu: string
closeMenu: string
}
}
export interface LegalPageContent {