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 src/components/home/SectionCallForProposals.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
import { texts } from '../../i18n/home'
import { menuTexts } from '../../i18n/menu'
import SectionTitle from '../SectionTitle.astro'
import Button from '../Button.astro'

Expand All @@ -9,6 +10,7 @@ interface Props {

const { lang } = Astro.props
const t = texts[lang as keyof typeof texts]
const menuT = menuTexts[lang as keyof typeof menuTexts]
---

<div class="flex flex-col items-center gap-6">
Expand All @@ -28,6 +30,7 @@ const t = texts[lang as keyof typeof texts]
href="https://pretalx.com/pycones-2026/cfp"
target="_blank"
rel="noopener noreferrer"
aria-label={`${t['cfp.button']} ${menuT.new_tab}`}
>
{t['cfp.button']}
</Button>
Expand Down
3 changes: 3 additions & 0 deletions src/components/home/sponsors/SponsorsGroup.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import type { ISponsor } from '../../../types/sponsors'
import { texts } from '../../../i18n/home'
import { menuTexts } from '../../../i18n/menu'

interface Props {
lang: string
Expand All @@ -12,6 +13,7 @@ interface Props {

const { title, sponsors, lang, tierColor, size } = Astro.props
const t = texts[lang as keyof typeof texts]
const menuT = menuTexts[lang as keyof typeof menuTexts]
---

{
Expand All @@ -28,6 +30,7 @@ const t = texts[lang as keyof typeof texts]
href={sponsor.website}
target="_blank"
rel="noopener noreferrer"
aria-label={`${t['sponsors.altlogo'].replace('{name}', sponsor.name)} ${menuT.new_tab}`}
class="group relative flex items-center justify-center rounded-xl bg-white/[0.03] border border-white/[0.06] backdrop-blur-sm p-5 transition-all duration-300 hover:bg-white/[0.08] hover:border-white/[0.15] hover:scale-[1.03] hover:shadow-lg hover:shadow-black/20"
>
<img
Expand Down
Loading