You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/BenefitGrid/index.js
+21-6Lines changed: 21 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,9 @@ const benefits = [
17
17
text: 'With no debug client connected, the debugger stays out of the way. A typical web request does around 1% more work than running with no debugger at all.',
18
18
icon: (
19
19
<svg{...iconProps}>
20
-
<pathd="M4 18a8 8 0 1 1 16 0"/>
21
-
<pathd="M12 18l4.5-5"/>
20
+
<pathd="M3 16a9 9 0 1 1 18 0"/>
21
+
<pathd="M12 16l5.5-6"/>
22
+
<circlecx="12"cy="16"r="1.4"/>
22
23
</svg>
23
24
),
24
25
},
@@ -53,12 +54,27 @@ const benefits = [
53
54
</svg>
54
55
),
55
56
},
57
+
{
58
+
title: 'Everything you expect',
59
+
text: 'Breakpoints and conditional breakpoints. Step over, into, and out. Inspect variables, objects, and arrays, and watch expressions change as you go.',
60
+
icon: (
61
+
<svg{...iconProps}>
62
+
<rectx="6"y="7"width="12"height="13"rx="6"/>
63
+
<pathd="M9 7.5V6a3 3 0 0 1 6 0v1.5"/>
64
+
<pathd="M12 11v8"/>
65
+
<pathd="M2.5 11.5H6M18 11.5h3.5"/>
66
+
<pathd="M3.5 17.5 6 16M20.5 17.5 18 16"/>
67
+
</svg>
68
+
),
69
+
},
56
70
{
57
71
title: 'One job, done well',
58
72
text: 'No profiler, no code coverage, no tracing. Step debugging is the only thing here, which is exactly why the rest of the time it costs you so little.',
59
73
icon: (
60
74
<svg{...iconProps}>
61
-
<pathd="M4 7h16M7 12h10M10 17h4"/>
75
+
<circlecx="12"cy="12"r="9"/>
76
+
<circlecx="12"cy="12"r="5"/>
77
+
<circlecx="12"cy="12"r="1.4"/>
62
78
</svg>
63
79
),
64
80
},
@@ -67,9 +83,8 @@ const benefits = [
67
83
text: 'Use it as a regular extension, or reach for a container image with the debugger compiled straight into the interpreter. Change one line of your Dockerfile and you are done.',
0 commit comments