+ {item.label} +
++ {item.description} +
+diff --git a/app/(pages)/about/page.tsx b/app/(pages)/about/page.tsx index 100e804..07b4b79 100644 --- a/app/(pages)/about/page.tsx +++ b/app/(pages)/about/page.tsx @@ -1,15 +1,7 @@ import Link from "next/link" -import { siteConfig } from "@/config/site" -import { Accordion } from "@/components/ui/accordion" import { AppContent } from "@/components/ui/app-content" -import { Button } from "@/components/ui/button" -import { Label } from "@/components/ui/label" -import { Banner } from "@/components/banner" -import { Divider } from "@/components/divider" -import { Icons } from "@/components/icons" -import { LABELS } from "@/app/labels" -import { interpolate } from "@/lib/utils" + import { Metadata } from "next" export const metadata: Metadata = { @@ -18,89 +10,107 @@ export const metadata: Metadata = { } export default async function AboutPage() { - const principles = LABELS.ABOUT_PAGE.PRINCIPLES + const OurWorkItems = [ + { + label: "Incubation", + description: + "We research and build open source public goods like protocols, primitives, and products.", + }, + { + label: "Education", + description: + "We create resources to help Ethereum devs and users make informed choices about privacy.", + }, + { + label: "Coordination", + description: + "We push for better privacy standards by aligning efforts across the ecosystem and guiding policy conversations.", + }, + ] return (
+ {item.description} +
+{description}
- } - )} - - ), - } - }), - ]} - /> -- {item.description} -
- ++ {item.description} +
+ + {item.action && ( + + + + )} +