-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathindex.astro
More file actions
62 lines (61 loc) · 1.34 KB
/
Copy pathindex.astro
File metadata and controls
62 lines (61 loc) · 1.34 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
58
59
60
61
62
---
import Base from '../layouts/Base.astro';
---
<Base>
<h2>Components</h2>
<ul>
<li>
<a href="/twitter"><code><Tweet/></code> component examples</a>
</li>
<li>
<a href="/vimeo"><code><Vimeo/></code> component examples</a>
</li>
<li>
<a href="/youtube"><code><YouTube/></code> component examples</a>
</li>
<li>
<a href="/link-preview"
><code><LinkPreview/></code> component examples</a
>
</li>
<li>
<a href="/mastodon"
><code><MastodonPost/></code> component examples</a
>
</li>
<li>
<a href="/baseline-status"
><code><BaselineStatus/></code> component examples</a
>
</li>
<li>
<a href="/bluesky"><code><BlueskyPost/></code> component examples</a
>
</li>
<li>
<a href="/gist"><code><Gist/></code> component examples</a>
</li>
<li>
<a href="/spotify"><code><Spotify/></code> component examples</a>
</li>
</ul>
<h2>Other examples</h2>
<ul>
<li>
<a href="/markdown">Components in MDX examples</a>
</li>
<li>
<a href="/integration">MDX integration examples</a>
</li>
<li>
<a href="/twitter-with-js">
<code><Tweet/></code> with JavaScript (Light theme)
</a>
</li>
<li>
<a href="/twitter-with-js-dark">
<code><Tweet/></code> with JavaScript (Dark theme)
</a>
</li>
</ul>
</Base>