-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathcalendar-integration.jsx
More file actions
57 lines (52 loc) · 2.07 KB
/
Copy pathcalendar-integration.jsx
File metadata and controls
57 lines (52 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* eslint-disable react/prop-types */
import React from 'react';
import Button from 'components/shared/button';
import Container from 'components/shared/container';
import Heading from 'components/shared/heading';
const CalendarIntegration = () => (
<section className="py-8 sm:py-10 calendar-integration md:py-16 lg:py-20">
<Container>
<div className="mb-8 text-center">
<Heading className="text-black dark:text-white" tag="h2">
Community Calendar
</Heading>
<p className="max-w-2xl mx-auto mt-5 text-lg text-black dark:text-gray-2">
Stay up to date with Cilium community meetings, events, and activities. Join us for
regular discussions and project updates.
</p>
</div>
<div className="overflow-hidden bg-white rounded-lg shadow-lg dark:bg-gray-800">
<div className="aspect-w-1 aspect-h-1 sm:aspect-w-16 sm:aspect-h-10 md:aspect-h-12 lg:aspect-h-14">
<iframe
src="https://zoom-lfx.platform.linuxfoundation.org/meetings/cilium?view=week"
title="Cilium Community Calendar"
aria-label="Cilium community meetings calendar"
className="w-full h-full min-h-[360px] sm:min-h-[600px] border-0"
loading="lazy"
referrerPolicy="strict-origin-when-cross-origin"
allowFullScreen
/>
</div>
</div>
<div className="mt-6 text-center">
<Button
theme="primary-1"
to="https://zoom-lfx.platform.linuxfoundation.org/meetings/cilium?view=week"
target="_blank"
rel="noopener noreferrer"
>
Open Calendar in New Tab
<svg className="w-4 h-4 ml-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
d="M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14"
/>
</svg>
</Button>
</div>
</Container>
</section>
);
export default CalendarIntegration;