Update content#40
Conversation
iulusoy
commented
Mar 25, 2026
- team description
- image for blog
- home page card formatting
- links in faq text
There was a problem hiding this comment.
Pull request overview
This PR updates the frontend’s public-facing content and layout, expanding the Team page content, refining FAQ link phrasing/placement, adjusting homepage card formatting (including a blog image), and aligning i18n strings with the new UI content.
Changes:
- Expanded
/teampage from a short description to a structured team/publications layout with Flowbite components and external links. - Updated FAQ answers to embed links inline and split some answers into multiple translation parts.
- Adjusted homepage card text positioning and added an image to the blog card; removed an unused import in
/about.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
| src/frontend/src/routes/team/+page.svelte | Replaces simple team description with structured sections, lists, and link buttons. |
| src/frontend/src/routes/faq/+page.svelte | Reorders/embeds links within FAQ answers and aligns markup with updated translation keys. |
| src/frontend/src/routes/about/+page.svelte | Removes unused navigation import. |
| src/frontend/src/routes/+page.svelte | Tweaks homepage card text positioning and adds a blog card image plus component-scoped CSS. |
| src/frontend/src/lib/i18n/translations.ts | Adds new team/FAQ translation keys and updates existing FAQ copy for DE/FR. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <h3 class="text-xl text-center"> | ||
| {$t.team.ResearchTeam} | ||
| </h3> | ||
| <h4 class="text-l text-center italic"> |
There was a problem hiding this comment.
The Tailwind class text-l is not a standard Tailwind text-size utility, so it will be ignored and the heading will render at the default size. Use a valid class such as text-lg/text-base (or remove the size class if not needed).
| {$t.team.PhDStudent1LinkText} | ||
| </Button> | ||
| <br> | ||
| <h4 class="text-l text-center italic"> |
There was a problem hiding this comment.
The Tailwind class text-l is not a standard Tailwind text-size utility, so it will be ignored and the heading will render at the default size. Use a valid class such as text-lg/text-base (or remove the size class if not needed).
|


