-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (160 loc) · 6.47 KB
/
index.html
File metadata and controls
167 lines (160 loc) · 6.47 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>
Epoch - Interactive Timeline Editor | Visualize Your Life Journey
</title>
<meta
name="title"
content="Epoch - Interactive Timeline Editor | Visualize Your Life Journey"
/>
<meta
name="description"
content="See your life unfold. A beautiful, intuitive timeline editor to visualize milestones, projects, and dreams across multiple tracks. Free, open-source, and runs in your browser."
/>
<meta
name="keywords"
content="timeline editor, life timeline, project timeline, visual planner, milestone tracker, event timeline, gantt chart alternative, life events, personal timeline, free timeline tool"
/>
<meta name="author" content="Epoch" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#4f46e5" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Epoch - Interactive Timeline Editor"
/>
<meta
property="og:description"
content="See your life unfold. A beautiful timeline editor to visualize your journey—past milestones, present projects, and future dreams."
/>
<meta property="og:image" content="/og-image.png" />
<meta property="og:site_name" content="Epoch" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Epoch - Interactive Timeline Editor"
/>
<meta
name="twitter:description"
content="See your life unfold. A beautiful timeline editor to visualize your journey—past milestones, present projects, and future dreams."
/>
<meta name="twitter:image" content="/og-image.png" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Epoch",
"description": "A beautiful, intuitive timeline editor to visualize milestones, projects, and life events across multiple tracks.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Multi-track timeline visualization",
"Drag and drop event management",
"Smart lane stacking for overlapping events",
"Import/Export JSON data",
"Zoom controls from year to day view"
]
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
brand: {
50: "#eef2ff",
100: "#e0e7ff",
200: "#c7d2fe",
300: "#a5b4fc",
400: "#818cf8",
500: "#6366f1", // Indigo-500
600: "#4f46e5", // Indigo-600
700: "#4338ca",
800: "#3730a3",
900: "#312e81",
},
slate: {
850: "#1e293b",
},
},
fontFamily: {
sans: [
"Inter",
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Helvetica Neue",
"Arial",
"sans-serif",
],
},
},
},
};
</script>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Inter", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Subtle Custom Scrollbar */
.timeline-scroll::-webkit-scrollbar {
height: 10px;
width: 10px;
}
.timeline-scroll::-webkit-scrollbar-track {
background: transparent;
}
.timeline-scroll::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 5px;
border: 2px solid #f8fafc; /* Matches bg-slate-50 */
}
.timeline-scroll::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
.timeline-scroll::-webkit-scrollbar-corner {
background: transparent;
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"@google/genai": "https://esm.sh/@google/genai@^1.35.0"
}
}
</script>
<link rel="stylesheet" href="/index.css" />
</head>
<body class="bg-slate-50 text-slate-900 overflow-hidden">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>