-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (94 loc) · 5.6 KB
/
index.html
File metadata and controls
98 lines (94 loc) · 5.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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=Be+Vietnam+Pro:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#7b5556" />
<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="keywords" content="Creighton Model, CrMS, fertility tracker, cycle charting, NaProTechnology, FertilityCare, natural family planning, NFP, mucus tracking, peak day, fertility awareness, Catholic fertility, cervical mucus, cycle chart app" />
<meta name="author" content="Jacob Stephens" />
<meta name="robots" content="index, follow" />
<meta name="application-name" content="Creighton Tracker" />
<link rel="canonical" href="https://creighton.stephens.page/" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate 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_large_image" />
<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",
"inLanguage": "en",
"author": {
"@type": "Person",
"name": "Jacob Stephens",
"url": "https://stephens.page"
},
"keywords": "Creighton Model, CrMS, fertility tracker, NaProTechnology, FertilityCare, natural family planning, NFP"
}
</script>
<title>Creighton Cycle Tracker — CrMS Fertility Charting App</title>
</head>
<body>
<div id="app"></div>
<noscript>
<h1>Creighton Cycle Tracker</h1>
<p>A free Creighton Model (CrMS) fertility cycle tracking app. Track daily observations, chart mucus patterns, identify peak days, and share your chart with your FertilityCare Practitioner.</p>
<h2>Features</h2>
<ul>
<li>Daily fertility observation tracking — bleeding, mucus stretch, mucus characteristics, frequency</li>
<li>Auto-computed CrMS stamps — green (dry/infertile), red (bleeding), white (fertile/mucus), yellow (Basic Infertile Pattern)</li>
<li>Classic Creighton 35-column chart with cycle rows, stamps, and observation codes</li>
<li>Calendar view with mini stamps and cycle boundaries</li>
<li>Automatic cycle detection and peak day identification</li>
<li>Provider sharing with read-only chart links</li>
<li>Works offline as a Progressive Web App</li>
<li>Cross-device sync with encrypted backup</li>
<li>Data export in JSON and CSV formats</li>
</ul>
<p>Learn more about the Creighton Model at <a href="https://www.fertilitycare.org/">FertilityCare.org</a> and <a href="https://saintpaulvi.com/">Saint Paul VI Institute</a>.</p>
</noscript>
<script type="module" src="/src/main.ts"></script>
</body>
</html>