83 lines
4.0 KiB
PHP
83 lines
4.0 KiB
PHP
<?php
|
||
declare(strict_types=1);
|
||
|
||
require __DIR__ . '/../app/bootstrap.php';
|
||
app_db();
|
||
|
||
$pageTitle = 'Neon Medical Tracker';
|
||
$activePage = 'home';
|
||
$heroImage = 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/45/Jogging_Woman_in_Grass.jpg/1280px-Jogging_Woman_in_Grass.jpg';
|
||
|
||
require __DIR__ . '/partials/site-header.php';
|
||
?>
|
||
<main>
|
||
<section class="site-hero">
|
||
<img src="<?= htmlspecialchars($heroImage, ENT_QUOTES) ?>" alt="Runner training outdoors in bright green grass">
|
||
<div class="site-hero-copy">
|
||
<p class="site-eyebrow">Medication logs, vitals, labs, terminology, NIH/NLM research links</p>
|
||
<h1>Neon Medical Tracker</h1>
|
||
<p class="site-lede">A multi-user medical tracking workspace for people who want medicines, readings, labs, symptoms, source links, and profile administration in one web dashboard.</p>
|
||
<div class="site-actions">
|
||
<a class="site-primary" href="/signup.php">Start tracking</a>
|
||
<a class="site-secondary" href="/medical.php">Explore database</a>
|
||
</div>
|
||
</div>
|
||
<p class="photo-credit">
|
||
Photo: <a href="https://commons.wikimedia.org/wiki/File:Jogging_Woman_in_Grass.jpg">Jogging Woman in Grass</a>
|
||
by Mike Baird, <a href="https://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a>.
|
||
</p>
|
||
</section>
|
||
|
||
<section class="site-band">
|
||
<div class="site-section-heading">
|
||
<p class="site-eyebrow">Built for daily use</p>
|
||
<h2>One workspace for personal health records and sourced reference links.</h2>
|
||
</div>
|
||
<div class="feature-grid">
|
||
<article>
|
||
<span>01</span>
|
||
<h3>Medication tracking</h3>
|
||
<p>Log prescription and over-the-counter medicines by date, dose, route, frequency, status, prescriber, and notes.</p>
|
||
</article>
|
||
<article>
|
||
<span>02</span>
|
||
<h3>Vitals and symptoms</h3>
|
||
<p>Track blood pressure, pulse, temperature, oxygen saturation, glucose, pain scores, symptoms, and context.</p>
|
||
</article>
|
||
<article>
|
||
<span>03</span>
|
||
<h3>Labs and terminology</h3>
|
||
<p>Store lab values and browse plain-language medical terms connected to MedlinePlus, RxNorm, PubMed, and ClinicalTrials.gov.</p>
|
||
</article>
|
||
<article>
|
||
<span>04</span>
|
||
<h3>NIH/NLM studies</h3>
|
||
<p>Browse NIH/NLM research categories and study-search links related to the medicines included in the catalog.</p>
|
||
</article>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="site-split">
|
||
<div>
|
||
<p class="site-eyebrow">For households, caregivers, and small teams</p>
|
||
<h2>Profiles stay separate, admins stay in control.</h2>
|
||
<p>Each user gets a profile, theme preference, medication logs, vitals, lab results, medical notes, and research references. Admins can create users, edit details, activate or deactivate accounts, and remove profiles from a dedicated dashboard.</p>
|
||
<a class="site-secondary inline-link" href="/admin.php">Open admin dashboard</a>
|
||
</div>
|
||
<div class="site-metric-stack">
|
||
<article><strong>Daily</strong><span>Log today’s medicines, readings, symptoms, and notes.</span></article>
|
||
<article><strong>Weekly</strong><span>Review medication adherence, vital trends, labs, and follow-up context.</span></article>
|
||
<article><strong>Monthly</strong><span>Keep longer-term records ready for visits with clinicians or caregivers.</span></article>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="cta-strip">
|
||
<div>
|
||
<p class="site-eyebrow">Ready when you are</p>
|
||
<h2>Create your profile and open the medical tracker.</h2>
|
||
</div>
|
||
<a class="site-primary" href="/signup.php">Sign up</a>
|
||
</section>
|
||
</main>
|
||
<?php require __DIR__ . '/partials/site-footer.php'; ?>
|