Updated index to link to db page (and back)

This commit is contained in:
ivan-pelly
2026-02-18 15:23:12 -08:00
parent 8440577c5c
commit 969e563c9c
2 changed files with 2132 additions and 170 deletions
+73 -23
View File
@@ -1,20 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="WIN Student Goal Tracker — a student support & case management system for tracking goals, documenting services, and logging critical incidents with auditability and privacy in mind." />
<meta name="description"
content="WIN Student Goal Tracker — a student support & case management system for tracking goals, documenting services, and logging critical incidents with auditability and privacy in mind." />
<meta name="theme-color" content="#111827" />
<title>WIN — Student Support & Case Management</title>
<!-- Open Graph -->
<meta property="og:title" content="WIN — Student Support & Case Management" />
<meta property="og:description" content="Track goals, services, and critical incidents for students with secure, auditable workflows designed for student support programs." />
<meta property="og:description"
content="Track goals, services, and critical incidents for students with secure, auditable workflows designed for student support programs." />
<meta property="og:type" content="website" />
<style>
:root { color-scheme: light; }
* { box-sizing: border-box; }
:root {
color-scheme: light;
}
* {
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
@@ -27,7 +35,10 @@
-moz-osx-font-smoothing: grayscale;
}
a{ color: inherit; }
a {
color: inherit;
}
a:focus-visible {
outline: 3px solid #111827;
outline-offset: 3px;
@@ -45,6 +56,7 @@
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
z-index: 1000;
}
.skip-link:focus {
left: 1rem;
top: 1rem;
@@ -58,11 +70,13 @@
padding: 3.25rem 1.5rem 2.5rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: clamp(2rem, 4vw, 2.9rem);
letter-spacing: -0.02em;
}
header p {
margin: 0.75rem auto 0;
max-width: 70ch;
@@ -87,9 +101,15 @@
display: grid;
gap: 1.25rem;
}
@media (min-width: 860px) {
.grid-2{ grid-template-columns: 1fr 1fr; }
.grid-3{ grid-template-columns: 1fr 1fr 1fr; }
.grid-2 {
grid-template-columns: 1fr 1fr;
}
.grid-3 {
grid-template-columns: 1fr 1fr 1fr;
}
}
.card {
@@ -103,6 +123,7 @@
margin: 0 0 0.5rem;
font-size: 1.3rem;
}
h3 {
margin: 0 0 0.25rem;
font-size: 1.05rem;
@@ -119,6 +140,7 @@
gap: 0.5rem;
margin-top: 0.75rem;
}
.pill {
display: inline-flex;
align-items: center;
@@ -141,7 +163,18 @@
font-weight: 800;
border: 2px solid transparent;
}
.btn:hover{ background:#1e40af; }
.btn.disabled {
background: #9ca3af;
cursor: not-allowed;
pointer-events: none;
opacity: 0.7;
}
.btn:hover {
background: #1e40af;
}
.btn:focus-visible {
outline: 3px solid #fff;
outline-offset: 3px;
@@ -154,11 +187,14 @@
border-color: rgba(255, 255, 255, 0.55);
font-weight: 800;
}
.btn.secondary:hover {
background: rgba(255, 255, 255, 0.08);
}
.muted{ color:#374151; }
.muted {
color: #374151;
}
.callout {
border-left: 6px solid #1d4ed8;
@@ -176,10 +212,12 @@
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
border: 1px solid #eef2ff;
}
.kpi strong {
font-size: 1.3rem;
letter-spacing: -0.01em;
}
.kpi span {
color: #374151;
font-size: 0.95rem;
@@ -221,13 +259,8 @@
</p>
<div class="hero-actions" role="group" aria-label="Primary actions">
<a
href="https://github.com/opelly27/WinStudentGoalTracker"
class="btn"
target="_blank"
rel="noopener noreferrer"
aria-label="Open the WIN Student Goal Tracker repository on GitHub (opens in a new tab)"
>
<a href="https://github.com/opelly27/WinStudentGoalTracker" class="btn" target="_blank" rel="noopener noreferrer"
aria-label="Open the WIN Student Goal Tracker repository on GitHub (opens in a new tab)">
View Repository
</a>
<a href="#getting-started" class="btn secondary" aria-label="Jump to getting started section">
@@ -350,13 +383,8 @@
Want to contribute? Open a PR with a clear description, screenshots (if UI),
and notes on security/privacy impacts.
</p>
<a
href="https://github.com/opelly27/WinStudentGoalTracker"
class="btn"
target="_blank"
rel="noopener noreferrer"
aria-label="Open repository on GitHub (opens in a new tab)"
>
<a href="https://github.com/opelly27/WinStudentGoalTracker" class="btn" target="_blank"
rel="noopener noreferrer" aria-label="Open repository on GitHub (opens in a new tab)">
Go to GitHub
</a>
</section>
@@ -408,6 +436,27 @@
<!-- </div> -->
</section>
<section class="card" style="margin-top:1.25rem;" aria-labelledby="documentation">
<h2 id="documentation">Documentation</h2>
<p class="muted">
Explore the technical documentation for the WIN Student Goal Tracker, including the database schema and entity
relationships.
</p>
<div class="pill-row">
<a href="db.html" class="btn" aria-label="View database documentation">
Database Documentation
</a>
<span class="btn disabled" aria-disabled="true" title="Coming soon">
API Documentation
</span>
<span class="btn disabled" aria-disabled="true" title="Coming soon">
UI Documentation
</span>
<span class="btn disabled" aria-disabled="true" title="Coming soon">
User Manual
</span>
</div>
</section>
</main>
@@ -415,4 +464,5 @@
<small>© 2026 WIN Student Goal Tracker — Built for student support, documentation, and accountability.</small>
</footer>
</body>
</html>
+1912
View File
File diff suppressed because it is too large Load Diff