-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (75 loc) · 2.74 KB
/
index.html
File metadata and controls
82 lines (75 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>StoryPoints - Agile Planning Poker Tool</title>
<!-- Basic Meta Tags -->
<meta
name="description"
content="Use StoryPoints to estimate tasks with your Agile team online. Easy, fast, and collaborative planning poker tool for sprint planning."
/>
<meta
name="keywords"
content="scrum poker, agile estimation, planning poker, sprint planning, agile tools, online scrum poker, story points"
/>
<meta name="author" content="Rupak Dey" />
<!-- Open Graph Meta Tags (for social sharing) -->
<meta
property="og:title"
content="StoryPoints - Agile Planning Poker Tool"
/>
<meta
property="og:description"
content="Use StoryPoints to estimate tasks with your Agile team online. Easy, fast, and collaborative planning poker tool for sprint planning."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://rdx-story-points.web.app" />
<!-- <meta
property="og:image"
content="https://yourdomain.com/path-to-image.jpg"
/> -->
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="StoryPoints" />
<meta
name="twitter:title"
content="StoryPoints - Agile Planning Poker Tool"
/>
<meta
name="twitter:description"
content="Use StoryPoints to estimate tasks with your Agile team online. Easy, fast, and collaborative planning poker tool for sprint planning."
/>
<!-- <meta
name="twitter:image"
content="https://yourdomain.com/path-to-image.jpg"
/> -->
<!-- Canonical URL -->
<link rel="canonical" href="https://rdx-story-points.web.app" />
<!-- Favicon -->
<link rel="icon" href="" type="image/x-icon" />
<!-- Robots Meta Tag -->
<meta name="robots" content="index, follow" />
<!-- Schema.org Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "StoryPoints",
"url": "https://rdx-story-points.web.app",
"description": "An online scrum poker tool to help Agile teams estimate tasks collaboratively and efficiently.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Web",
"browserRequirements": "Requires JavaScript and a modern browser",
"author": {
"@type": "Individual",
"name": "Rupak Dey"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>