-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide.html
More file actions
165 lines (146 loc) · 3.93 KB
/
slide.html
File metadata and controls
165 lines (146 loc) · 3.93 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Security + Ona</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', system-ui, sans-serif;
background: #0a0a0a;
color: #e5e5e5;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2rem;
}
.slide {
max-width: 960px;
width: 100%;
}
h1 {
font-size: 2.4rem;
font-weight: 700;
color: #fff;
margin-bottom: 2.5rem;
line-height: 1.2;
}
h1 span {
color: #22c55e;
}
.section-label {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid #262626;
}
.problem .section-label { color: #ef4444; }
.solution .section-label { color: #22c55e; }
.columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
margin-top: 2rem;
}
ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 1.25rem;
}
li {
display: flex;
gap: 0.75rem;
font-size: 1.05rem;
line-height: 1.5;
color: #d4d4d4;
}
li .icon {
flex-shrink: 0;
width: 1.5rem;
height: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 0.85rem;
margin-top: 0.15rem;
}
.problem li .icon {
background: rgba(239, 68, 68, 0.15);
color: #ef4444;
}
.solution li .icon {
background: rgba(34, 197, 94, 0.15);
color: #22c55e;
}
li strong {
color: #fff;
font-weight: 600;
}
.result {
margin-top: 3rem;
padding: 1.25rem 1.5rem;
background: rgba(34, 197, 94, 0.08);
border: 1px solid rgba(34, 197, 94, 0.2);
border-radius: 0.5rem;
font-size: 1.1rem;
color: #d4d4d4;
text-align: center;
}
.result strong {
color: #22c55e;
}
</style>
</head>
<body>
<div class="slide">
<h1>GitHub Security + <span>Ona</span></h1>
<div class="columns">
<div class="problem">
<div class="section-label">The problem</div>
<ul>
<li>
<div class="icon">✕</div>
<div><strong>Growing backlog</strong> — scanners find vulnerabilities faster than teams can fix them</div>
</li>
<li>
<div class="icon">✕</div>
<div><strong>Security fixes feel like toil</strong> — developers deprioritize repetitive dependency bumps and low-level code changes</div>
</li>
<li>
<div class="icon">✕</div>
<div><strong>Auto-generated PRs break things</strong> — text search-and-replace produces changes that are insufficiently tested or don't compile</div>
</li>
</ul>
</div>
<div class="solution">
<div class="section-label">How Ona fixes this</div>
<ul>
<li>
<div class="icon">✓</div>
<div><strong>AI software engineer</strong> — analyzes each finding and crafts a reasoned fix, not a regex substitution</div>
</li>
<li>
<div class="icon">✓</div>
<div><strong>Real dev environment</strong> — the fix is built and tested where the code can actually compile and run</div>
</li>
<li>
<div class="icon">✓</div>
<div><strong>Iterates until proven</strong> — if tests fail, the agent reads errors, adjusts, and retries</div>
</li>
</ul>
</div>
</div>
<div class="result">
The result: a PR that is <strong>ready to review and merge</strong>, not a starting point that needs manual cleanup.
</div>
</div>
</body>
</html>