-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpage.tsx
More file actions
43 lines (37 loc) · 1.38 KB
/
page.tsx
File metadata and controls
43 lines (37 loc) · 1.38 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
import { Metadata } from "next";
import { pageSeo } from "@/lib/page-seo";
import {
ListPageLayout,
ListPageHeader,
CTASection,
SensemakingSection,
CategoryContent,
} from "@/components/layouts";
import { AppSidebar } from "@/components/layouts/AppSidebar";
import { caseStudies } from "@/content/case-studies";
import { getSensemakingFor } from "@/content/research";
import SectionHeader from "@/components/ui/SectionHeader";
export const metadata: Metadata = pageSeo.caseStudies;
export default function CaseStudiesPage() {
return (
<ListPageLayout sidebar={<AppSidebar />}>
<ListPageHeader
title="Case Studies"
description="Analysis of a funding experiment"
/>
<SensemakingSection article={getSensemakingFor("case-studies")} />
<section className="section">
<div className="container-page">
<SectionHeader title="All Case Studies" subtitle="" />
<CategoryContent items={caseStudies} type="case-study" itemLabel="case studies" />
</div>
</section>
<CTASection
title="Share Your Experience"
description="Have you run a funding round or received a grant? Your story could help others make better decisions. Only thorough, well-documented case studies are accepted."
buttonText="Submit a Case Study"
buttonHref="/submit?type=case-study"
/>
</ListPageLayout>
);
}