-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 2.77 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 2.77 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
<!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>Discord Timestamp Generator</title>
<!-- Rich Embed & SEO -->
<meta name="description" content="Discord Timestamp Generator: Create, reverse, and convert timestamps with natural language, a manual picker, and timezone support. Generates all Discord time formats instantly." />
<meta name="theme-color" content="#23272A" />
<!-- Open Graph (Discord, Facebook, etc.) -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://discord-timestamp-gen.pages.dev/" />
<meta property="og:title" content="Discord Timestamp Generator" />
<meta property="og:description" content="Discord Timestamp Generator: Create, reverse, and convert timestamps with natural language, a manual picker, and timezone support. Generates all Discord time formats instantly." />
<meta property="og:image" content="https://i.ibb.co/bF9gV2x/discord-timestamp-generator-banner.png" />
<!-- Twitter Card -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://discord-timestamp-gen.pages.dev/" />
<meta property="twitter:title" content="Discord Timestamp Generator" />
<meta property="twitter:description" content="Discord Timestamp Generator: Create, reverse, and convert timestamps with natural language, a manual picker, and timezone support. Generates all Discord time formats instantly." />
<meta property="twitter:image" content="https://i.ibb.co/bF9gV2x/discord-timestamp-generator-banner.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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</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",
"chrono-node": "https://aistudiocdn.com/chrono-node@^2.9.0",
"moment": "https://aistudiocdn.com/moment@^2.30.1"
}
}
</script>
</head>
<body class="bg-zinc-900 text-gray-300">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>