-
-
Notifications
You must be signed in to change notification settings - Fork 806
Expand file tree
/
Copy pathpage.tsx
More file actions
45 lines (43 loc) · 1.17 KB
/
Copy pathpage.tsx
File metadata and controls
45 lines (43 loc) · 1.17 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
import { type Plan, PlanGrid } from "@/src/components/PlanGrid";
import { Section } from "@/src/components/Section";
const PLANS: Plan[] = [
{
title: "Community",
price: 0,
period: "hour",
description:
"Be part of the Community, get help, and help others. Together we're strong.",
features: ["Public Slack Channel", "7000+ Individuals"],
ctaText: "Join Slack",
ctaLink: "https://slack.chillicream.com/",
},
{
title: "Consultancy",
price: 300,
period: "hour",
description: "You need immediate help and want to talk to an Expert.",
features: ["Dedicated Session", "Dedicated Expert"],
ctaText: "Book a Session",
ctaLink: "https://calendly.com/chillicream/60min",
},
{
title: "Support",
price: "custom",
description: "You need a Support Plan. Here you go.",
features: [
"Dedicated Account Manager",
"Private Slack Channel",
"E-Mail Support",
"And More...",
],
ctaText: "Check out Plans",
ctaLink: "/services/support",
},
];
export default function HelpPage() {
return (
<Section title="In Need of Urgent Help">
<PlanGrid plans={PLANS} />
</Section>
);
}