📦 EqualifyEverything / equalify-hub

📄 about.tsx · 239 lines
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239import type { FC } from 'hono/jsx';
import { Layout } from '#src/components/Layout';
import { getCurrentUser } from '#src/utils/auth';

const styles = `
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}
@media (max-width: 768px) {
    .about-container { padding: 32px 20px 48px; }
}
.about-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px;
}
.about-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #1f2937;
    margin: 0 0 48px;
}

/* Roadmap section */
.roadmap-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
    scroll-margin-top: 100px;
}
.roadmap-subheading {
    color: #4b5563;
    margin: 0 0 24px;
    font-size: 16px;
}

/* KPI cards */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
.kpi-card {
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.kpi-value {
    font-size: 32px;
    font-weight: 700;
    color: #C8102E;
}
.kpi-label {
    font-size: 14px;
    color: #4b5563;
    margin-top: 4px;
}
.kpi-note {
    font-size: 13px;
    color: #6b7280;
    margin: -16px 0 32px;
}
.kpi-note a { color: #C8102E; }

/* Milestones */
.milestones-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 32px 0 16px 0;
}
.roadmap-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}
.roadmap-item:last-child { border-bottom: none; }
.roadmap-status {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.status-completed { background: #d1fae5; color: #065f46; }
.status-in-progress { background: #dbeafe; color: #1e40af; }
.status-planned { background: #f3f4f6; color: #4b5563; }
.roadmap-content { flex: 1; }
.roadmap-content h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #1f2937;
}
.roadmap-content p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
}
.roadmap-date {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}
`;

export const AboutPage: FC = () => {
    const user = getCurrentUser();

    return (
        <Layout title="About Equalify" styles={styles} user={user}>
            <div class="about-container">
                <h1>About Equalify</h1>

                <p class="about-intro">
                    Equalify is on a mission to make the web accessible to everyone. Our Open Source tools
                    help organizations identify and fix accessibility issues at scale.
                </p>

                <h2 id="roadmap" class="roadmap-heading">Roadmap</h2>
                <p class="roadmap-subheading">
                    Track our progress, upcoming features, and key milestones for the Equalify project.
                </p>

                {/* Platform KPIs — August 2026 baseline from the monthly development report
                    (equalify-docs/reports/2026-09.md, "Platform KPI Baseline"). Update monthly. */}
                <div class="kpi-grid">
                    <div class="kpi-card">
                        <div class="kpi-value">231,383</div>
                        <div class="kpi-label">Pages Scanned</div>
                    </div>
                    <div class="kpi-card">
                        <div class="kpi-value">18</div>
                        <div class="kpi-label">Active Users</div>
                    </div>
                    <div class="kpi-card">
                        <div class="kpi-value">210</div>
                        <div class="kpi-label">Sessions Started</div>
                    </div>
                    <div class="kpi-card">
                        <div class="kpi-value">1</div>
                        <div class="kpi-label">Releases Published</div>
                    </div>
                </div>
                <p class="kpi-note">
                    Platform KPIs for August 2026. Month-over-month figures and definitions are in the{' '}
                    <a href="/reports/2026-09">September 2026 Development Report</a>.
                </p>

                <h3 class="milestones-heading">Milestones</h3>

                <div class="roadmap-item">
                    <div class="roadmap-status">
                        <span class="status-badge status-completed">Completed</span>
                    </div>
                    <div class="roadmap-content">
                        <h3>Equalify Hub Launch</h3>
                        <p>Central documentation and dashboard for the Equalify project.</p>
                        <div class="roadmap-date">January 2026</div>
                    </div>
                </div>

                <div class="roadmap-item">
                    <div class="roadmap-status">
                        <span class="status-badge status-in-progress">In Progress</span>
                    </div>
                    <div class="roadmap-content">
                        <h3>Equalify 1.0 Release</h3>
                        <p>Meet or exceed feature set of existing commercial platforms.</p>
                        <div class="roadmap-date">Q1 2026</div>
                    </div>
                </div>

                <div class="roadmap-item">
                    <div class="roadmap-status">
                        <span class="status-badge status-in-progress">In Progress</span>
                    </div>
                    <div class="roadmap-content">
                        <h3>AI PDF Accessibility Converter</h3>
                        <p>Turn PDFs into accessible markdown.</p>
                        <div class="roadmap-date">Q1 2026</div>
                    </div>
                </div>

                <div class="roadmap-item">
                    <div class="roadmap-status">
                        <span class="status-badge status-in-progress">In Progress</span>
                    </div>
                    <div class="roadmap-content">
                        <h3>Guided User Testing</h3>
                        <p>Report on user testing results inside Equalify.</p>
                        <div class="roadmap-date">Q1 2026</div>
                    </div>
                </div>

                <div class="roadmap-item">
                    <div class="roadmap-status">
                        <span class="status-badge status-completed">Launched</span>
                    </div>
                    <div class="roadmap-content">
                        <h3>Open Source Contributor Program</h3>
                        <p>
                            Onboarding process and tooling for external contributors to the UIC accessibility mission.{' '}
                            <a href="/sustainers">Become an Equalify Sustainer &rarr;</a>
                        </p>
                        <div class="roadmap-date">September 2026</div>
                    </div>
                </div>

                <div class="roadmap-item">
                    <div class="roadmap-status">
                        <span class="status-badge status-planned">Planned</span>
                    </div>
                    <div class="roadmap-content">
                        <h3>Equalify 2.0 Release</h3>
                        <p>Add user feedback into new features.</p>
                        <div class="roadmap-date">Q2 2026</div>
                    </div>
                </div>
            </div>
        </Layout>
    );
};