-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathAgentsPage.tsx
More file actions
36 lines (35 loc) · 1.07 KB
/
Copy pathAgentsPage.tsx
File metadata and controls
36 lines (35 loc) · 1.07 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
import { htMono, htSans, htSerif } from "@/components/pages/HomeTwo/fonts";
import { BAND, CREAM, grainBg, SHELL } from "@/components/pages/HomeTwo/theme";
import { Capabilities } from "./Capabilities";
import { Faq } from "./Faq";
import { FinalCta } from "./FinalCta";
import { Harnesses } from "./Harnesses";
import { Hero } from "./Hero";
import { Prompts } from "./Prompts";
import { Safety } from "./Safety";
import { SetupPrompt } from "./SetupPrompt";
export const AgentsPage = () => (
<div
data-header-flat
className={`${htSans.className} ${htSans.variable} ${htSerif.variable} ${htMono.variable} text-[#111111]`}
style={grainBg(SHELL)}
>
<div className="px-2.5 pb-2.5 pt-[68px] sm:px-4 sm:pb-4 lg:pt-[76px]">
<div
className="rounded-[24px] shadow-[0_0_0_1px_rgba(17,17,17,0.045)]"
style={grainBg(CREAM)}
>
<div className="rounded-[24px] rounded-b-[28px]" style={grainBg(BAND)}>
<Hero />
</div>
<SetupPrompt />
<Harnesses />
<Capabilities />
<Prompts />
<Safety />
<Faq />
<FinalCta />
</div>
</div>
</div>
);