-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (75 loc) · 3.78 KB
/
index.html
File metadata and controls
79 lines (75 loc) · 3.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4RXK6BKTKW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4RXK6BKTKW');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#4CAF50" />
<meta name="description" content="Free Creighton Model (CrMS) fertility cycle tracker. Chart your observations, track mucus patterns, identify peak days, and share charts with your FertilityCare Practitioner. Works offline as a PWA." />
<meta name="author" content="Jacob Stephens" />
<link rel="canonical" href="https://creighton.stephens.page/" />
<link rel="icon" type="image/png" href="/app-icons/icon-192x192.png" />
<link rel="apple-touch-icon" href="/app-icons/icon-192x192.png" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://creighton.stephens.page/" />
<meta property="og:title" content="Creighton Cycle Tracker — CrMS Fertility Charting App" />
<meta property="og:description" content="Free Creighton Model fertility cycle tracker. Chart observations, track mucus patterns, identify peak days, and share with your FertilityCare Practitioner." />
<meta property="og:image" content="https://creighton.stephens.page/app-icons/icon-512x512.png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:site_name" content="Creighton Cycle Tracker" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Creighton Cycle Tracker — CrMS Fertility Charting App" />
<meta name="twitter:description" content="Free Creighton Model fertility cycle tracker. Chart observations, track mucus patterns, and share with your practitioner." />
<meta name="twitter:image" content="https://creighton.stephens.page/app-icons/icon-512x512.png" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Creighton Cycle Tracker",
"alternateName": "CrMS Tracker",
"url": "https://creighton.stephens.page/",
"description": "Free Creighton Model (CrMS) fertility cycle tracker. Chart your observations, track mucus patterns, identify peak days, and share charts with your FertilityCare Practitioner.",
"applicationCategory": "HealthApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires a modern web browser with JavaScript enabled",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Daily fertility observation tracking",
"Creighton Model stamp chart visualization",
"Automatic cycle detection and peak day identification",
"Provider sharing with read-only chart links",
"Offline support via Progressive Web App",
"Data export in JSON and CSV formats",
"Cross-device sync with encrypted backup"
],
"screenshot": "https://creighton.stephens.page/app-icons/icon-512x512.png",
"softwareVersion": "1.0.0",
"author": {
"@type": "Person",
"name": "Jacob Stephens"
}
}
</script>
<title>Creighton Cycle Tracker — CrMS Fertility Charting App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>