Files
medicaltracker/public/index.php
T
Ty Clifford 17ebaf21a3 -
2026-06-30 12:39:17 -04:00

83 lines
4.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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 todays 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'; ?>