-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.35 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div>
<img src="https://dyte-uploads.s3.ap-south-1.amazonaws.com/dyte-logo-dark.svg" alt="Logo" width="180"/>
<h1>Javascript Plugin Template</h1>
<h3>
This template demonstrates how Dyte's Plugin SDK can be used. 🚀
</h3>
<p>
Plugin SDK let's you build custom plugins that work with all of Dyte's client SDKs.
</p>
<div class='links'>
<a
href='https://www.npmjs.com/package/@dytesdk/plugin-sdk/v/latest'
target='__blank'
>
Explore Docs
</a>
•
<a
href='https://github.com/dyte-in/plugin-sdk/issues'
target='__blank'
>
Report Bug
</a>
•
<a
href='https://github.com/dyte-in/plugin-sdk/issues'
target='__blank'
>
Feature Request
</a>
</div>
</div>
<script type="module" src="./main.js"></script>
</body>
</html>