Skip to content

Commit 3db4bb8

Browse files
iPwndsclaude
andcommitted
Fix UI issues: add translations, venues page, remove duplicate SQL files
- Add missing nav.profile and nav.venues translation keys (en/fr/de) - Add venues listing translations for all 3 languages - Create /venues page with search, city filter, and venue cards grid - Add Venues link to nav header (visible to all users) - Fix hero stats: use dynamic cities/venues counts instead of hardcoded - Remove data.sql and schema.sql (DbInitializer handles all seeding, Hibernate handles schema — these SQL files caused duplicate data) - Add .venues-grid CSS layout Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1c3643e commit 3db4bb8

7 files changed

Lines changed: 203 additions & 206 deletions

File tree

Eventify-Back-End/src/main/resources/data.sql

Lines changed: 0 additions & 81 deletions
This file was deleted.

Eventify-Back-End/src/main/resources/schema.sql

Lines changed: 0 additions & 119 deletions
This file was deleted.

Eventify-Front-End/app/globals.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,13 @@ header.site-header {
320320
gap: 0;
321321
}
322322

323+
/* ===== Venues Grid ===== */
324+
.venues-grid {
325+
display: grid;
326+
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
327+
gap: 20px;
328+
}
329+
323330
/* ===== Venue Card v2 ===== */
324331
.venue-card-v2 {
325332
background: var(--card);

0 commit comments

Comments
 (0)