-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (42 loc) · 2.43 KB
/
index.html
File metadata and controls
50 lines (42 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="apple-touch-icon" href="/favicon.png">
<!-- Primary Meta Tags -->
<title>Easy Stopwatch - The Simplest Way to Measure Time</title>
<meta name="title" content="Easy Stopwatch - The Simplest Way to Measure Time">
<meta name="description" content="Easy Stopwatch is a simple, battery-efficient app that works offline. Just tap to start or stop - no complicated settings, just pure functionality in your pocket.">
<!-- Keywords -->
<meta name="keywords" content="stopwatch, timer, time tracking, easy stopwatch, simple timer, workout timer, offline stopwatch">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://easystopwatch.app/">
<meta property="og:title" content="Easy Stopwatch - The Simplest Way to Measure Time">
<meta property="og:description" content="Easy Stopwatch is a simple, battery-efficient app that works offline. Just tap to start or stop - no complicated settings, just pure functionality in your pocket.">
<meta property="og:image" content="/favicon.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://easystopwatch.app/">
<meta property="twitter:title" content="Easy Stopwatch - The Simplest Way to Measure Time">
<meta property="twitter:description" content="Easy Stopwatch is a simple, battery-efficient app that works offline. Just tap to start or stop - no complicated settings, just pure functionality in your pocket.">
<meta property="twitter:image" content="/favicon.png">
<!-- App-specific meta tags -->
<meta name="application-name" content="Easy Stopwatch">
<meta name="author" content="Yoav Sabag">
<meta name="theme-color" content="#111827">
<!-- Robots -->
<meta name="robots" content="index, follow">
<!-- Preconnect to external domains -->
<link rel="preconnect" href="https://apps.apple.com">
<link rel="preconnect" href="https://play.google.com">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
</body>
</html>