Skip to content

Commit 6921f81

Browse files
committed
finished feature section component need audit
1 parent 6c7f2da commit 6921f81

File tree

2 files changed

+26
-27
lines changed

2 files changed

+26
-27
lines changed

www/src/pages/components/FeaturesSection.jsx

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,61 +2,63 @@ import {
22
ArrowPathIcon,
33
CloudArrowUpIcon,
44
CogIcon,
5-
LockClosedIcon,
5+
ArrowDownTrayIcon,
66
ServerIcon,
7-
ShieldCheckIcon,
7+
ClockIcon,
8+
CameraIcon,
9+
PresentationChartLineIcon,
10+
MapIcon,
811
} from '@heroicons/react/24/outline'
912

1013
const features = [
1114
{
12-
name: 'Push to Deploy',
13-
description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.',
14-
icon: CloudArrowUpIcon,
15+
name: 'State SnapShot Display',
16+
description: 'See your application state in a stylized and interactive format, for clear concise state management',
17+
icon: CameraIcon,
1518
},
1619
{
17-
name: 'SSL Certificates',
18-
description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.',
19-
icon: LockClosedIcon,
20+
name: 'Time Travel Rendering',
21+
description: 'Simulate any state change from your DOM history, with a simple click of a button',
22+
icon: ClockIcon,
2023
},
2124
{
22-
name: 'Simple Queues',
23-
description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.',
25+
name: 'Action Comparison & Snapshot Series',
26+
description: 'Save a series of state snapshots and use it to analyze changes in component render performance between current and previous series of snapshots.',
2427
icon: ArrowPathIcon,
2528
},
2629
{
27-
name: 'Advanced Security',
28-
description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.',
29-
icon: ShieldCheckIcon,
30+
name: 'Components Performance Display',
31+
description: 'Visualize the relative latency trends introduced by re-rendering each component on state change',
32+
icon: PresentationChartLineIcon,
3033
},
3134
{
32-
name: 'Powerful API',
33-
description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.',
34-
icon: CogIcon,
35+
name: 'Download, Upload, and Persist',
36+
description: 'Save your state history for future tests. Keep your state changes on app reload',
37+
icon: ArrowDownTrayIcon,
3538
},
3639
{
37-
name: 'Database Backups',
38-
description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.',
39-
icon: ServerIcon,
40+
name: 'Atom and Selector Relationships',
41+
description: 'Visualize the mapping of Atoms and Selectors to components in Recoil Apps',
42+
icon: MapIcon,
4043
},
4144
]
4245

4346
export default function FeaturesSection() {
4447
return (
4548
<div className="relative bg-white py-24 sm:py-32 lg:py-40">
4649
<div className="mx-auto max-w-md px-6 text-center sm:max-w-3xl lg:max-w-7xl lg:px-8">
47-
<h2 className="text-lg font-semibold text-indigo-600">Deploy faster</h2>
50+
<h2 className="text-lg font-semibold text-indigo-600">Core Features</h2>
4851
<p className="mt-2 text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
49-
Everything you need to deploy your app
52+
What makes Reactime so great?
5053
</p>
5154
<p className="mx-auto mt-5 max-w-prose text-xl text-gray-500">
52-
Phasellus lorem quam molestie id quisque diam aenean nulla in. Accumsan in quis quis nunc, ullamcorper
53-
malesuada. Eleifend condimentum id viverra nulla.
55+
Reactime is chock full of features that make your life easier as a developer. From time-travel debugging to state snapshot display, check out how using Reactime will improve your developer experience.
5456
</p>
5557
<div className="mt-20">
5658
<div className="grid grid-cols-1 gap-12 sm:grid-cols-2 lg:grid-cols-3">
5759
{features.map((feature) => (
5860
<div key={feature.name} className="pt-6">
59-
<div className="flow-root rounded-lg bg-gray-50 px-6 pb-8">
61+
<div className="flow-root rounded-lg bg-gray-50 px-6 pb-8 h-64">
6062
<div className="-mt-6">
6163
<div>
6264
<span className="inline-flex items-center justify-center rounded-xl bg-indigo-500 p-3 shadow-lg">

www/src/pages/components/NavBar.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,7 @@ useEffect(() => {
2828
function NavBarSytling() {
2929
return scrollPosition === 0 ? "sticky top-0 bg-gray-50 w-screen z-20 border-b" : "sticky top-0 bg-gray-50 w-screen z-20 shadow-xl";
3030
}
31-
32-
3331
return (
34-
3532
<Disclosure as="nav" className="bg-[#333333] fixed z-10 w-screen drop-shadow-20px">
3633
{({ open }) => (
3734
<>

0 commit comments

Comments
 (0)