Skip to content

Commit 468ec1a

Browse files
committed
added context panel feature container and fixed a typo in opening paragraph
1 parent e2b5e94 commit 468ec1a

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

src/pages/components/FeaturesSection.tsx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,20 @@ import {
99
PresentationChartLineIcon,
1010
MapIcon,
1111
EyeIcon,
12-
1312
} from "@heroicons/react/24/outline";
1413
import React from "react";
1514

1615
const features = [
1716
{
1817
name: "Prop Visualization",
19-
description:
20-
"See how properties flow down the component tree",
21-
icon: CogIcon
18+
description: "See how properties flow down the component tree",
19+
icon: CogIcon,
2220
},
2321
{
2422
name: "Accessibility Debugging",
2523
description:
2624
"Check how a screen reader reads your application per state change",
27-
icon: EyeIcon
25+
icon: EyeIcon,
2826
},
2927
{
3028
name: "State SnapShot Display",
@@ -62,6 +60,12 @@ const features = [
6260
"Visualize the mapping of Atoms and Selectors to components in Recoil Apps",
6361
icon: MapIcon,
6462
},
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+
},
6569
];
6670

6771
export default function FeaturesSection() {
@@ -74,7 +78,7 @@ export default function FeaturesSection() {
7478
</p>
7579
<p className="mx-auto mt-5 max-w-prose text-xl text-gray-500">
7680
Reactime is a developer tool that is compatible with react-based
77-
framework applications. It is a full of features that will make life
81+
framework applications. It is full of features that will make life
7882
easier as a developer. From time-travel debugging to state snapshot
7983
display, check out how using Reactime will improve the developer
8084
experience!

src/pages/components/LandingPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export default function LandingPage() {
133133
</span>{" "}
134134
by over{" "}
135135
<span className="font-medium text-rose-500">
136-
2,100 users
136+
2,200 users
137137
</span>
138138
</div>
139139
</div>

0 commit comments

Comments
 (0)