fix(events): use domain noun in description, not brand name

PWA manifest description and HTML meta description were templating
the brand name in ("Discover Bouge near you" / "Discover Sortir near
you"), which conflates app-name with domain noun. The description
should say what the app does, not repeat the brand.

Switches to static "Discover events near you" so the description
remains stable across deployments while the title and short_name still
flex per VITE_APP_NAME.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Padreug 2026-06-09 19:49:53 +02:00
commit dfb3494024
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF">
<title>%VITE_APP_NAME%</title>
<meta name="apple-mobile-web-app-title" content="%VITE_APP_NAME%">
<meta name="description" content="Discover %VITE_APP_NAME% near you">
<meta name="description" content="Discover events near you">
</head>
<body>
<div id="app"></div>

View file

@ -87,7 +87,7 @@ export default defineConfig(({ mode }) => ({
manifest: {
name: APP_NAME,
short_name: APP_NAME,
description: `Discover ${APP_NAME} near you`,
description: 'Discover events near you',
theme_color: '#1f2937',
background_color: '#ffffff',
display: 'standalone',