-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpage.tsx
More file actions
43 lines (37 loc) · 1.36 KB
/
page.tsx
File metadata and controls
43 lines (37 loc) · 1.36 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 {
ListPageLayout,
ListPageHeader,
CTASection,
SensemakingSection,
CategoryContent,
} from "@/components/layouts";
import { AppSidebar } from "@/components/layouts/AppSidebar";
import { mechanisms } from "@/content/mechanisms";
import { getSensemakingFor } from "@/content/research";
import SectionHeader from "@/components/ui/SectionHeader";
import { pageSeo } from "@/lib/page-seo";
export const metadata: Metadata = pageSeo.mechanisms;
export default function MechanismsPage() {
return (
<ListPageLayout sidebar={<AppSidebar />}>
<ListPageHeader
title="Funding Mechanisms"
description="Funding mechanisms and approaches"
/>
<SensemakingSection article={getSensemakingFor("mechanisms")} />
<section className="section">
<div className="container-page">
<SectionHeader title="All Mechanisms" subtitle="" />
<CategoryContent items={mechanisms} type="mechanism" itemLabel="mechanisms" />
</div>
</section>
<CTASection
title="Know a mechanism we're missing?"
description="Help us document the full landscape of funding mechanisms. Submit new mechanisms or suggest improvements to existing documentation."
buttonText="Submit a Mechanism"
buttonHref="/submit?type=mechanism"
/>
</ListPageLayout>
);
}