-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.71 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BxpCode — Beautiful Code Blocks for React</title>
<meta
name="description"
content="Drop-in React code blocks with Shiki highlighting, Prettier formatting, and zero config. Dark and light themes, copy button, line numbers — all built in."
/>
<meta
name="keywords"
content="react, code-block, syntax-highlighting, shiki, prettier, code-formatting, dark-theme, light-theme, typescript, javascript, copy-to-clipboard, line-numbers, tabs, zero-config"
/>
<meta name="author" content="Saqib Bedar" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta
property="og:title"
content="BxpCode — Beautiful Code Blocks for React"
/>
<meta
property="og:description"
content="Drop-in React code blocks with Shiki highlighting, Prettier formatting, and zero config."
/>
<meta property="og:image" content="bxp-og.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta
name="twitter:title"
content="BxpCode — Beautiful Code Blocks for React"
/>
<meta
name="twitter:description"
content="Drop-in React code blocks with Shiki highlighting, Prettier formatting, and zero config."
/>
<meta name="twitter:image" content="logo.svg" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="icon" type="image/png" href="logo.svg" />
</head>
<body style="background-color: black">
<div id="root"></div>
<script type="module" src="src/main.tsx"></script>
</body>
</html>