feat(seo): enhance multilingual support and SEO handling
All checks were successful
Deploy to production / deploy (push) Successful in 2m46s

- Added support for multiple languages in the frontend, including English, Spanish, and Cebuano, improving accessibility for a broader audience.
- Implemented hreflang links for better SEO performance, ensuring search engines can correctly index language-specific content.
- Updated SEO metadata handling to utilize internationalization keys, enhancing the clarity and relevance of page titles and descriptions.
- Refactored SEO utility functions to streamline the management of OpenGraph and hreflang attributes, improving maintainability and performance.
This commit is contained in:
Torsten Schulz (local)
2026-04-07 15:43:16 +02:00
parent ebb2283646
commit c5b8860605
13 changed files with 542 additions and 98 deletions

View File

@@ -26,6 +26,9 @@
<meta name="theme-color" content="#FF8C5A" />
<link rel="alternate" hreflang="de" href="%VITE_PUBLIC_BASE_URL%/" />
<link rel="alternate" hreflang="en" href="%VITE_PUBLIC_BASE_URL%/?lang=en" />
<link rel="alternate" hreflang="es" href="%VITE_PUBLIC_BASE_URL%/?lang=es" />
<link rel="alternate" hreflang="ceb" href="%VITE_PUBLIC_BASE_URL%/?lang=ceb" />
<link rel="alternate" hreflang="x-default" href="%VITE_PUBLIC_BASE_URL%/" />
</head>
@@ -33,11 +36,26 @@
<body>
<div id="app"></div>
<noscript>
<section style="max-width:960px;margin:40px auto;padding:0 20px;font-family:Arial,sans-serif;line-height:1.6;">
<section lang="de" style="max-width:960px;margin:40px auto;padding:0 20px;font-family:Arial,sans-serif;line-height:1.6;">
<h1>YourPart</h1>
<p>YourPart ist eine Plattform fuer Community, Chat, Forum, Blogs, Vokabeltrainer, das Browser-Aufbauspiel Falukant und Minispiele.</p>
<p>Wichtige Bereiche: <a href="/blogs">Blogs</a>, <a href="/vokabeltrainer">Vokabeltrainer</a>, <a href="/falukant">Falukant</a> und <a href="/minigames">Minispiele</a>.</p>
</section>
<section lang="en" style="max-width:960px;margin:24px auto;padding:0 20px;font-family:Arial,sans-serif;line-height:1.6;">
<h2>YourPart (English)</h2>
<p>YourPart is a platform for community, chat, forums, blogs, a vocabulary trainer, the browser builder game Falukant and minigames.</p>
<p>Key areas: <a href="/blogs?lang=en">Blogs</a>, <a href="/vokabeltrainer?lang=en">Vocabulary trainer</a>, <a href="/falukant?lang=en">Falukant</a> and <a href="/minigames?lang=en">Minigames</a>.</p>
</section>
<section lang="es" style="max-width:960px;margin:24px auto;padding:0 20px;font-family:Arial,sans-serif;line-height:1.6;">
<h2>YourPart (Español)</h2>
<p>YourPart es una plataforma para comunidad, chat, foros, blogs, entrenador de vocabulario, el juego de construcción Falukant en el navegador y minijuegos.</p>
<p>Áreas: <a href="/blogs?lang=es">Blogs</a>, <a href="/vokabeltrainer?lang=es">Vocabulario</a>, <a href="/falukant?lang=es">Falukant</a> y <a href="/minigames?lang=es">Minijuegos</a>.</p>
</section>
<section lang="ceb" style="max-width:960px;margin:24px auto;padding:0 20px;font-family:Arial,sans-serif;line-height:1.6;">
<h2>YourPart (Cebuano)</h2>
<p>Ang YourPart usa ka plataporma alang sa komunidad, chat, forum, blog, trainer sa bokabularyo, ang browser game nga Falukant ug minigames.</p>
<p>Mga bahin: <a href="/blogs?lang=ceb">Blogs</a>, <a href="/vokabeltrainer?lang=ceb">Bokabularyo</a>, <a href="/falukant?lang=ceb">Falukant</a>, <a href="/minigames?lang=ceb">Minigames</a>.</p>
</section>
</noscript>
<script type="module" src="/src/main.js"></script>
</body>