> ## Documentation Index
> Fetch the complete documentation index at: https://constanza101-borrissol-28.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Borrissol: Astro 6 textile workshop site architecture

> Borrissol Espai Creatiu is a multilingual Astro 6 website for a textile workshop studio in Mataró. Covers the stack, key features, and project goals.

Borrissol Espai Creatiu is the production website for a textile workshop studio located at Carrer de Sant Antoni, 17, baix in Mataró, Barcelona, founded by Belén Vilanova. The site was built as a freelance project from brief to deployment and serves as both a marketing landing page and an editorial platform for the studio's workshops in tufting, embroidery, punch needle, felting, and loom weaving. It is live at [borrissol.com](https://borrissol.com).

## Stack

| Layer     | Technology                                                       |
| --------- | ---------------------------------------------------------------- |
| Framework | Astro 6 (hybrid — prerendered pages + Netlify functions for CMS) |
| CMS       | Keystatic (Git-backed, MDX content for the blog)                 |
| Styles    | CSS custom properties — token-based design system                |
| Scripts   | Vanilla JS (no runtime framework)                                |
| Images    | Astro `<Picture>` — AVIF + WebP, responsive `srcset`             |
| Fonts     | Roboto self-hosted (WOFF2, weights 400 + 500)                    |
| Testing   | Playwright E2E + Vitest unit tests                               |
| Deploy    | Git push → auto-deploy (Netlify)                                 |

## Key features

<CardGroup cols={2}>
  <Card title="4-language i18n" icon="globe" href="/core-concepts/i18n">
    Catalan (default, no prefix), Spanish `/es`, English `/en`, and French `/fr` — all driven by a single `[lang]` dynamic route with zero duplicated page files. All copy lives in `src/i18n/ui.ts`.
  </Card>

  <Card title="Token-based design system" icon="palette" href="/core-concepts/design-system">
    Full token set in `src/styles/theme.css` covering colors, spacing, typography, radius, borders, and icons. Monochromatic 5-step palette with a utility-class layer for consistent type rendering.
  </Card>

  <Card title="SEO & structured data" icon="magnifying-glass" href="/core-concepts/seo">
    JSON-LD `LocalBusiness` + `FAQPage` schemas, Open Graph + Twitter Card tags, `AggregateRating`, canonical URLs, hreflang in both `<head>` and sitemap XML, and a social-bot `robots.txt` allowlist.
  </Card>

  <Card title="Analytics & consent" icon="chart-bar" href="/core-concepts/analytics">
    Google Analytics 4 with Consent Mode v2 Advanced — GA loads on every visit in cookieless mode by default; cookies are only granted after explicit user consent via a custom banner persisted in `localStorage`.
  </Card>

  <Card title="Workshop landing pages" icon="scissors" href="/workshops/tufting">
    Per-technique landing pages (tufting, punch needle, felting, loom weaving) composed from shared section components, fully translated across all four languages.
  </Card>

  <Card title="Keystatic CMS" icon="pencil" href="/dev/cms-keystatic">
    Git-backed CMS at `/keystatic`. Posts are MDX files in `src/content/blog/`, authored by Belén in Catalan. Auth is handled via Keystatic Cloud; public page reads are fully static.
  </Card>
</CardGroup>

## Lighthouse scores

<Note>
  Scores measured on mobile with Lighthouse: **Performance 99 · Accessibility 97 · Best Practices 100 · SEO 100**.

  Core Web Vitals (mobile): FCP 1.5 s · LCP 1.8 s · TBT 30 ms · CLS 0.
</Note>

## Studio information

| Field         | Detail                                                                                                                     |
| ------------- | -------------------------------------------------------------------------------------------------------------------------- |
| Business name | Borrissol Espai Creatiu                                                                                                    |
| Founder       | Belén Vilanova                                                                                                             |
| Address       | Carrer de Sant Antoni, 17, baix — Mataró, Catalunya 08301                                                                  |
| Phone         | +34 673 247 520                                                                                                            |
| Email         | [borrissolespaicreatiu@gmail.com](mailto:borrissolespaicreatiu@gmail.com)                                                  |
| Opening hours | Mon–Sat 09:30–13:30 and 16:30–20:30                                                                                        |
| Social        | [Instagram](https://www.instagram.com/borrissol_espai_creatiu) · [TikTok](https://www.tiktok.com/@borrissol_espai_creatiu) |
| Price range   | €€                                                                                                                         |

## Node version requirement

The project requires **Node ≥ 22.12.0**, as mandated by Astro 6. This version is pinned in `netlify.toml` (`NODE_VERSION = "22.12.0"`) and in `package.json` (`"engines": { "node": ">=22.12.0" }`). Running an older Node version will cause the build to fail.
