-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 2.56 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Split Calculator - Rowing</title>
<meta name="title" content="Split Calculator - Rowing" />
<meta
name="description"
content="The perfect way to plan out and calculate your indoor rowing pieces. Calculate your average splits, distance and total time. Share your pieces with your friends and coaches."
/>
<meta
name="keywords"
content="rowing,split calculator,erg,ergometer,2k,2k calculator,indoor rowing,plan,planner,rowing plan,rowing planner,erg plan,erg planner"
/>
<meta property="og:title" content="Split Calculator" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="The perfect way to plan out and calculate your indoor rowing pieces. Calculate your average splits, distance and total time. Share your pieces with your friends and coaches."
/>
<meta property="og:image" content="/logo.png" />
<meta property="og:url" content="https://splitcalculator.com/" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
/>
</noscript>
<!-- Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-KT67XC7FDX"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-KT67XC7FDX");
</script>
</head>
<body
class="min-h-screen flex flex-col bg-zinc-50 dark:bg-zinc-800 transition-colors"
>
<script type="module" src="/src/main.ts"></script>
</body>
</html>