-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.html
More file actions
50 lines (50 loc) · 1.87 KB
/
home.html
File metadata and controls
50 lines (50 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RudderStack Open Source Contributor Dashboard</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.css">
<style>
body {
background-color: #F6F5F3;
}
a {
text-decoration: none;
color: "#105ED5";
}
a:visited {
color: "#ADC9FF";
}
</style>
</head>
<body>
<div class="container">
<h2>🙏 Get started with contribution to RudderStack Open Source</h2>
<p>
<br/>
All new contributors are required to sign the Contributor License Agreement (CLA) before merging PRs
<br/><br/><br/>
<a type="button" href="/cla">Sign CLA Now</a>
<br/><br/><br/><br/><br/>
<hr/>
Tools & resources for RudderStack contributors
<ul>
<li><a href="https://www.rudderstack.com/docs/resources/community/#contribute" target="_blank">Contribution guide</a></li>
<li><a href="https://www.rudderstack.com/docs/user-guides/how-to-guides/developing-integrations-for-rudderstack/" target="_blank">Create a new integration</a></li>
<li><a href="https://github.com/rudderlabs/rudder-server/discussions/new?category=feature-requests" target="_blank">Request a new feature</a></li>
<li><a href="https://rudderstack.com/join-rudderstack-slack-community" target="_blank">RudderStack community on Slack</a></li>
<li><a href="https://www.rudderstack.com/docs/releases/" target="_blank">Product release announcements</a></li>
</ul>
</p>
</div>
</body>
<script type="module">
import { annotate } from 'https://unpkg.com/rough-notation?module';
const n1 = document.querySelector('a');
const a1 = annotate(n1, { type: 'highlight', color: '#C3E4CE' });
setTimeout(() => {
a1.show();
}, 3000);
</script>
</html>