forked from state-less/forum-frontend
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.61 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.61 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="JavaScript Forum powered by React Server – A fullstack framework with TSX components, reactive programming, and GraphQL integration for realtime updates."
/>
<!-- Open Graph Tags for social media sharing -->
<meta
property="og:title"
content="JavaScript Forum powered by React Server"
/>
<meta
property="og:description"
content="Join the conversation on this JavaScript forum powered by React Server. Explore TSX components, reactive programming, and GraphQL integration for realtime updates."
/>
<meta property="og:image" content="URL to your featured image" />
<meta property="og:url" content="https://javascript.forum" />
<!-- Twitter Card Tags for Twitter sharing -->
<meta
name="twitter:title"
content="JavaScript Forum powered by React Server"
/>
<meta
name="twitter:description"
content="Join the conversation on this JavaScript forum powered by React Server. Explore TSX components, reactive programming, and GraphQL integration for realtime updates."
/>
<!-- <meta name="twitter:image" content="URL to your featured image" /> -->
<!-- Canonical Tag to avoid duplicate content issues -->
<link rel="canonical" href="https://javascript.forum" />
<title>JavaScript Forum powered by React Server</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>