-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 3 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Word Counter Tool</title>
<!-- Rich Embed & SEO -->
<meta name="description" content="A powerful Word Counter Tool with real-time analysis. Track words, characters, sentences, paragraphs, and typing speed (WPM). Save your text entries for later." />
<meta name="theme-color" content="#23272A" />
<!-- Open Graph (Discord, Facebook, etc.) -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://word-counter-tools.pages.dev/" />
<meta property="og:title" content="Word Counter Tool" />
<meta property="og:description" content="A powerful Word Counter Tool with real-time analysis. Track words, characters, sentences, paragraphs, and typing speed (WPM). Save your text entries for later." />
<meta property="og:image" content="https://word-counter-tools.pages.dev/logo.png" />
<!-- Twitter Card -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://word-counter-tools.pages.dev/" />
<meta property="twitter:title" content="Word Counter Tool" />
<meta property="twitter:description" content="A powerful Word Counter Tool with real-time analysis. Track words, characters, sentences, paragraphs, and typing speed (WPM). Save your text entries for later." />
<meta property="twitter:image" content="https://word-counter-tools.pages.dev/logo.png" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/logo.png" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Silkscreen:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #111111;
background-image: radial-gradient(#333333 1px, transparent 1px);
background-size: 20px 20px;
}
.font-pixel {
font-family: 'Silkscreen', cursive;
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://aistudiocdn.com/react@^19.1.1",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.1.1/",
"react/": "https://aistudiocdn.com/react@^19.1.1/",
"framer-motion": "https://aistudiocdn.com/framer-motion@^12.23.22",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.544.0",
"moment": "https://aistudiocdn.com/moment@^2.30.1"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="text-gray-300">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>