refactor(events): rename activities module to events + wire VITE_APP_NAME for per-deployment branding #94

Merged
padreug merged 9 commits from refactor/events-module-rename into dev 2026-06-09 18:18:27 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit dfb3494024 - Show all commits

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>
Padreug 2026-06-09 19:49:53 +02:00

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',