-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreviewer-one-pager.html
More file actions
136 lines (132 loc) · 3.71 KB
/
Copy pathreviewer-one-pager.html
File metadata and controls
136 lines (132 loc) · 3.71 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Reporting and Tagging Intelligence Portal — One-page brief</title>
<style>
:root {
--bg: #f5f8ff;
--card: #ffffff;
--border: #d7e5f7;
--text: #12263a;
--muted: #5a6f87;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Arial, sans-serif;
background: var(--bg);
color: var(--text);
padding: 18px;
}
header {
max-width: 1100px;
margin: 0 auto 14px;
}
h1 {
margin: 0 0 6px;
font-size: 22px;
letter-spacing: -0.02em;
}
.sub {
margin: 0;
color: var(--muted);
font-size: 13px;
}
.panels {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.panel {
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 14px;
min-height: 340px;
}
.panel h2 {
margin: 0 0 10px;
font-size: 15px;
}
ul {
margin: 0;
padding-left: 18px;
}
li {
margin: 6px 0;
font-size: 14px;
line-height: 1.35;
}
.footnote {
max-width: 1100px;
margin: 12px auto 0;
font-size: 12px;
color: var(--muted);
}
@media print {
body {
background: #fff;
padding: 12px;
}
.panel {
break-inside: avoid;
}
}
@media (max-width: 980px) {
.panels {
grid-template-columns: 1fr;
}
.panel {
min-height: auto;
}
}
</style>
</head>
<body>
<header>
<h1>Reporting and Tagging Intelligence Portal</h1>
<p class="sub">Demo app · fake data · human review · CSV/GeoJSON exports · GitHub repo name: sportfish-reporting-qa-demo</p>
</header>
<main class="panels">
<section class="panel">
<h2>Problem</h2>
<ul>
<li>Outdoor trip reports arrive with missing fields, odd numbers, GPS mistakes, or duplicates.</li>
<li>Teams lose time fixing spreadsheets instead of reviewing the stories in the data.</li>
<li>Volunteer reporters stay engaged when they can see clear feedback on what they submitted.</li>
</ul>
</section>
<section class="panel">
<h2>Prototype</h2>
<ul>
<li>Submit trip, catches, optional tag notes.</li>
<li>Automatic checks flag likely issues.</li>
<li>Analyst queue for review actions.</li>
<li>Downloads (CSV / GeoJSON) plus a QA summary.</li>
<li>A simple participant view with totals, map dots, and timelines.</li>
</ul>
</section>
<section class="panel">
<h2>Where this could help</h2>
<ul>
<li>Faster intake with fewer broken records.</li>
<li>Easier review workflow for small teams.</li>
<li>Cleaner handoff files for maps and spreadsheets.</li>
<li>Friendlier visibility for volunteer reporters.</li>
</ul>
<p style="margin: 12px 0 0; font-size: 13px; color: var(--muted)">
Honest wording: this is workflow software. It does not estimate fish abundance or replace expert decisions.
</p>
</section>
</main>
<p class="footnote">
Print tip: File → Print → Save as PDF (or use your browser print dialog).
</p>
</body>
</html>