The press page documents media coverage of Borrissol Espai Creatiu, presenting each piece of coverage as a structured card with the outlet’s logo, a date label, a pull quote or embedded video, a caption, and a direct link to the original source. It gives visitors and potential partners a quick, credible signal of the studio’s public profile. The page header uses an eyebrow + H1 pattern (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/constanza101/borrissol/llms.txt
Use this file to discover all available pages before exploring further.
press.eyebrow / press.headline) consistent with the design system used across all interior pages.
Routes
The press page is served at four URLs, one per locale:| Locale | URL |
|---|---|
| Catalan (default) | /press |
| Spanish | /es/press |
| English | /en/press |
| French | /fr/press |
press.astro) hardcodes useTranslations('ca'); the three non-default locale routes ([lang]/press.astro) call useTranslations(lang) with the locale from getStaticPaths.
SEO metadata
In English (en locale):
| Key | Value |
|---|---|
page.press.title | Press |
page.press.description | Borrissol in the media: La Vanguardia, MataróTV and more recognition for the tufting and textile techniques workshop in Mataró. |
press.eyebrow | In the press |
press.headline | Borrissol in the media |
Components
PressGrid.astro
Full two-column press card grid, rendered on the
/press page. Each card contains the outlet logo, date label, quote or video embed, a caption paragraph, and a styled CTA link to the original coverage.PressStrip.astro
A condensed strip version of the press coverage used in the
PressStrip section on the home page. It links through to /press for the full grid.PressGrid.astro directly. The home page imports PressStrip.astro separately — the two components are maintained independently.
Press entries
Both components source their content fromsrc/i18n/ui.ts translation keys. Below are the two live press entries.
La Vanguardia
La Vanguardia · 28 May 2026
Label key:
press.lavanguardia.labelPull quote (press.lavanguardia.quote):“En Innoemprèn me ayudaron muchísimo a enfocar el negocio desde la sostenibilidad. Localicé un proveedor de proximidad que fabrica lanas a base de toldos reciclados.” — Belén Vilanova(English: “Innoemprèn helped me a lot to focus the business around sustainability. I found a local supplier that makes yarn from recycled awnings.”)Caption (
press.lavanguardia.caption): On the TecnoCampus Innoemprèn programme and the selected projects, including Borrissol Espai Creatiu.Link: https://www.lavanguardia.com/economia/innovacion/20260528/11549809/innoempren-impulso-transforma-ideas-empresas-sostenibles-brl.htmlCTA key: press.read-article → “Read article →“MataróTV — Art i Part
MataróTV · Art i Part
Label key:
press.matarotv.labelFormat: Embedded YouTube video (16:9 aspect ratio iframe, loading="lazy")Video ID: 2BAK8-bmz0sEmbed URL: https://www.youtube.com/embed/2BAK8-bmz0s?si=Ol5yViPuthl0ly98Caption (press.matarotv.caption): Interview with Belén Vilanova on the Art i Part program. Borrissol Espai Creatiu, textile techniques and the creative space in Mataró.Link: https://www.youtube.com/watch?v=2BAK8-bmz0sCTA key: press.watch-interview → “Watch interview →“Card structure
Each press card inPressGrid.astro follows this layout:
public/images/press/:
| Outlet | File | Dimensions |
|---|---|---|
| La Vanguardia | la-vanguardia.svg | 260 × 28 |
| MataróTV | matarotv.svg | 208 × 42 (.press-card-logo--lowercase modifier adds extra height to visually match uppercase wordmarks) |
Responsive layout
PressGrid.astro uses a two-column CSS Grid at desktop width:
Adding new press entries
The press cards are currently hardcoded in
PressGrid.astro and PressStrip.astro — they are not driven by a CMS collection. To add a new coverage item:- Add the outlet logo SVG to
public/images/press/. - Add translation keys (
press.[outlet].label,press.[outlet].quoteor video details,press.[outlet].caption) for all four locales insrc/i18n/ui.ts. - Add a new
<li class="card press-card">block inside bothPressGrid.astroandPressStrip.astro.