Skip to content

Commit 6bcdcc9

Browse files
committed
feat: replace meetup with luma
- Replace meetup references and logo with luma. - embed luma calendar in front page.
1 parent a58e459 commit 6bcdcc9

File tree

4 files changed

+31
-8
lines changed

4 files changed

+31
-8
lines changed

package-lock.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/community.astro

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ const communities: Array<CommunityItem> = [
1111
icon: "fa-brands:slack",
1212
},
1313
{
14-
url: "https://www.meetup.com/BarcelonaJUG/",
15-
title: "Meetup",
16-
description: "Join our Meetup group to know about our events",
17-
icon: "fa-brands:meetup",
14+
url: "https://lu.ma/barcelonajug",
15+
title: "Upcoming events",
16+
description: "Subscribe to our calendar to know about our events",
17+
icon: "mdi:calendar",
1818
},
1919
{
2020
url: "https://twitter.com/BarcelonaJUG",

src/components/events.astro

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
import ContentSection from "~/components/content-section.astro";
3+
---
4+
5+
<ContentSection title="Events" id="events">
6+
<Fragment slot="lead">
7+
Our upcoming events
8+
</Fragment>
9+
<iframe
10+
src="https://lu.ma/embed/calendar/cal-llVEhrTJyvHLBAG/events"
11+
width="600"
12+
height="450"
13+
frameborder="0"
14+
style="border: 1px solid #bfcbda88; border-radius: 4px;"
15+
allowfullscreen=""
16+
aria-hidden="false"
17+
tabindex="0"
18+
></iframe>
19+
20+
</ContentSection>

src/pages/index.astro

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import AboutUs from "~/components/aboutus.astro";
77
import Splash from "~/components/splash.astro";
88
import Contribute from "../components/contribute.astro";
99
import "~/styles/index.css";
10+
import Events from "../components/events.astro";
1011
1112
const { generator, site } = Astro;
1213
const image = new URL("social.jpg", site);
@@ -63,6 +64,7 @@ const description = "Group of Java's users in Barcelona .";
6364
<Splash />
6465
<div class="space-y-24 px-8 py-32">
6566
<Community />
67+
<Events/>
6668
<AboutUs />
6769
<Contribute />
6870
</div>

0 commit comments

Comments
 (0)