Skip to content

Commit bcabe2a

Browse files
committed
Merge branch 'main' of github.com:PythonCatania/PythonCatania.github.io
2 parents d63a9ba + f07072c commit bcabe2a

3 files changed

Lines changed: 7 additions & 10 deletions

File tree

public/i18n/en.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"nextMeetup": {
5757
"title": "Next Meetup",
5858
"description": "We organise regular meetups to share knowledge, experiences and passion for Python. Everyone is welcome, from beginners to experts.",
59-
"date": "Tuesday, 14 July 2026, 6:30 PM",
6059
"join": "Join us"
6160
},
6261
"supporters": {

public/i18n/it.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
"nextMeetup": {
5757
"title": "Prossimo Meetup",
5858
"description": "Organizziamo incontri periodici per condividere conoscenza, esperienze e passione per Python. Chiunque sia curioso è il benvenuto, dal principiante all'esperto.",
59-
"date": "Martedì 14 luglio 2026, ore 18:30",
6059
"join": "Unisciti a noi"
6160
},
6261
"supporters": {

src/app/components/meetup/meetup.component.html

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,25 @@
22
<div class="mx-auto flex max-w-5xl flex-col items-center gap-10 md:flex-row-reverse">
33
<div class="w-full md:w-1/2">
44
<img
5-
ngSrc="/images/homepage/NextMeetup.jpg"
6-
alt="After PyCon Italia 2026"
7-
width="842"
8-
height="474"
5+
ngSrc="/images/homepage/DefaultNextMeetup.jpg"
6+
alt="Next Meetup"
7+
width="1440"
8+
height="1440"
99
class="w-full rounded-(--radius) object-cover shadow-lg"
1010
/>
1111
</div>
1212
<div class="flex w-full flex-col items-center gap-4 text-center md:w-1/2 md:items-start md:text-left">
1313
<div class="py-16">
1414
<h2>{{ 'nextMeetup.title' | transloco }}</h2>
15-
<p class="mb-2">{{ 'nextMeetup.description' | transloco }}</p>
16-
<p class="mb-6 text-center text-xl font-bold">{{ 'nextMeetup.date' | transloco }}</p>
15+
<p class="mb-6">{{ 'nextMeetup.description' | transloco }}</p>
1716
<a
1817
id="meetup-link"
1918
rel="me noopener"
2019
target="_blank"
21-
href="https://www.meetup.com/python-catania/events/315327982/"
20+
href="https://www.meetup.com/python-catania/"
2221
role="button"
2322
aria-label="Meetup"
24-
class="mx-auto flex w-fit cursor-pointer items-center justify-center gap-2 rounded-(--radius) border-2 border-(--color-primary) bg-(--color-primary) px-4 py-2 text-base font-semibold text-white no-underline transition-colors hover:border-(--color-primary-hover) hover:bg-(--color-primary-hover) hover:text-white [&_svg]:shrink-0"
23+
class="inline-flex cursor-pointer items-center justify-center gap-2 rounded-(--radius) border-2 border-(--color-primary) bg-(--color-primary) px-4 py-2 text-base font-semibold text-white no-underline transition-colors hover:border-(--color-primary-hover) hover:bg-(--color-primary-hover) hover:text-white [&_svg]:shrink-0"
2524
>
2625
<app-icon-meetup />{{ 'nextMeetup.join' | transloco }}</a
2726
>

0 commit comments

Comments
 (0)