File tree 4 files changed +31
-8
lines changed
4 files changed +31
-8
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ const communities: Array<CommunityItem> = [
11
11
icon: " fa-brands:slack" ,
12
12
},
13
13
{
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 " ,
18
18
},
19
19
{
20
20
url: " https://twitter.com/BarcelonaJUG" ,
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import AboutUs from "~/components/aboutus.astro";
7
7
import Splash from " ~/components/splash.astro" ;
8
8
import Contribute from " ../components/contribute.astro" ;
9
9
import " ~/styles/index.css" ;
10
+ import Events from " ../components/events.astro" ;
10
11
11
12
const { generator, site } = Astro ;
12
13
const image = new URL (" social.jpg" , site );
@@ -63,6 +64,7 @@ const description = "Group of Java's users in Barcelona .";
63
64
<Splash />
64
65
<div class =" space-y-24 px-8 py-32" >
65
66
<Community />
67
+ <Events />
66
68
<AboutUs />
67
69
<Contribute />
68
70
</div >
You can’t perform that action at this time.
0 commit comments