-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathfeatures.tsx
More file actions
71 lines (66 loc) · 2.19 KB
/
Copy pathfeatures.tsx
File metadata and controls
71 lines (66 loc) · 2.19 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
import clsx from 'clsx';
import Heading from '@theme/Heading';
import {
PresentationChartBarIcon,
CodeBracketIcon,
RocketLaunchIcon,
} from '@heroicons/react/24/outline';
import Link from '@docusaurus/Link';
type FeatureItem = {
title: string;
link: string;
icon: JSX.Element;
children: React.ReactNode;
};
function Feature({ title, link, icon, children }: FeatureItem) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">{icon}</div>
<div className="text--center padding-horiz--md mt-2">
<Heading as="h3">
<Link to={link} className="text-black dark:text-white">
{title}
</Link>
</Heading>
<p>{children}</p>
</div>
</div>
);
}
export default function Features(): JSX.Element {
const iconMeasurementplan = (
<PresentationChartBarIcon
className="h-12 w-12 text-elbwalker"
aria-hidden="true"
/>
);
const iconSetup = (
<CodeBracketIcon className="h-12 w-12 text-elbwalker" aria-hidden="true" />
);
const iconExperts = (
<RocketLaunchIcon className="h-12 w-12 text-elbwalker" aria-hidden="true" />
);
return (
<section className="my-20">
<div className="container">
<div className="row">
<Feature title="Measurement plan meeting" icon={iconMeasurementplan}>
We'll work with your team to blend your current tracking setup with
our proven best practices for measuring user behavior. Together
we'll define the events to track.
</Feature>
<Feature title="Base setup support" icon={iconSetup}>
Whether it's implementing walker.js, managing consent handling, or
setting up server-side data collection using Google Cloud Platform
and BigQuery, we'll tailor our support to your needs.
</Feature>
<Feature title="Connect with tracking experts" icon={iconExperts}>
Stay connected with the elbwalker team through bi-weekly check-ins
after your initial onboarding. Plus, access our developers to
address production-related challenges.
</Feature>
</div>
</div>
</section>
);
}