Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
onlyBuiltDependencies:
- esbuild
- sharp

packages:
- src
3 changes: 2 additions & 1 deletion src/i18n/sponsors/ca.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
export const ca = {
title: 'Oportunitats de patrocini - PyConES 2026',
hero: {
date: 'BARCELONA, 6-8 NOVEMBRE',
title: 'PyConES 2026',
subtitle: 'Oportunitats de Patrocini',
subtitle: 'Oportunitats de patrocini',
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

en catalán y castellano ponemos menos mayúsculas en los substantivos

},
about: {
title: 'Sobre la PyConES',
Expand Down
1 change: 1 addition & 0 deletions src/i18n/sponsors/en.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export const en = {
title: 'Sponsorship Opportunities - PyConES 2026',
hero: {
date: 'BARCELONA, NOVEMBER 6-8',
title: 'PyConES 2026',
Expand Down
3 changes: 2 additions & 1 deletion src/i18n/sponsors/es.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
export const es = {
title: 'Oportunidades de patrocinio - PyConES 2026',
hero: {
date: 'BARCELONA, 6-8 NOVIEMBRE',
title: 'PyConES 2026',
subtitle: 'Oportunidades de Patrocinio',
subtitle: 'Oportunidades de patrocinio',
},
about: {
title: 'Sobre la PyConES',
Expand Down
3 changes: 2 additions & 1 deletion src/pages/[lang]/sponsors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const t = texts[(lang || 'es') as keyof typeof texts]
console.error('DEBUG -> Contenido de textsHERO:', t.hero)

const {
title,
hero,
about,
stats,
Expand All @@ -36,7 +37,7 @@ const {
} = t
---

<Layout title="Oportunidades de Patrocinio - PyConES 2026">
<Layout title={title}>
<div
class="page-wrapper text-[#e5e5e5] font-sans min-h-screen w-full absolute top-0 left-0 z-10 overflow-x-hidden"
>
Expand Down