Skip to content

Commit 753b6c1

Browse files
committed
added new features to features section
1 parent 468ec1a commit 753b6c1

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

src/pages/components/FeaturesSection.tsx

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ import React from "react";
1414

1515
const features = [
1616
{
17-
name: "Prop Visualization",
18-
description: "See how properties flow down the component tree",
19-
icon: CogIcon,
17+
name: "Time Travel Rendering",
18+
description:
19+
"Rewind to previous state changes from your DOM history with a simple click of a button",
20+
icon: ClockIcon,
2021
},
2122
{
22-
name: "Accessibility Debugging",
23+
name: "Context Display Panel",
2324
description:
24-
"Check how a screen reader reads your application per state change",
25+
"Visualize the relationships of context providers and consumers, along with live context theme data",
2526
icon: EyeIcon,
2627
},
2728
{
@@ -31,10 +32,15 @@ const features = [
3132
icon: CameraIcon,
3233
},
3334
{
34-
name: "Time Travel Rendering",
35+
name: "Prop Visualization",
36+
description: "See how properties flow down the component tree",
37+
icon: CogIcon,
38+
},
39+
{
40+
name: "Accessibility Debugging",
3541
description:
36-
"Rewind to previous state changes from your DOM history with a simple click of a button",
37-
icon: ClockIcon,
42+
"Check how a screen reader reads your application per state change",
43+
icon: EyeIcon,
3844
},
3945
{
4046
name: "Action Comparison & Snapshot Series",
@@ -48,6 +54,12 @@ const features = [
4854
"Visualize the latency trends for component render times on each state change",
4955
icon: PresentationChartLineIcon,
5056
},
57+
{
58+
name: "State History Diffing",
59+
description:
60+
"View the exact value differences in state changes, organized by snapshot",
61+
icon: ArrowPathIcon,
62+
},
5163
{
5264
name: "Download State History",
5365
description:
@@ -60,12 +72,6 @@ const features = [
6072
"Visualize the mapping of Atoms and Selectors to components in Recoil Apps",
6173
icon: MapIcon,
6274
},
63-
{
64-
name: "Context Display Panel",
65-
description:
66-
"Visualize the relationships of context providers and consumers, along with live context theme data",
67-
icon: EyeIcon,
68-
},
6975
];
7076

7177
export default function FeaturesSection() {

0 commit comments

Comments
 (0)