mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
"use client"
|
|
|
|
import { LangProps } from "@/types/common"
|
|
import { useTranslation } from "@/app/i18n/client"
|
|
|
|
import { Icons } from "../icons"
|
|
import { AppContent } from "../ui/app-content"
|
|
|
|
type WhatWeDoContent = { title: string; description: string; icon: any }
|
|
|
|
export const WhatWeDo = ({ lang }: LangProps["params"]) => {
|
|
const { t } = useTranslation(lang, "what-we-do-section")
|
|
|
|
const content: WhatWeDoContent[] = [
|
|
{
|
|
title: t("privacy.title"),
|
|
description: t("privacy.description"),
|
|
icon: Icons.privacy,
|
|
},
|
|
{
|
|
title: t("scaling.title"),
|
|
description: t("scaling.description"),
|
|
icon: Icons.scaling,
|
|
},
|
|
{
|
|
title: t("explorations.title"),
|
|
description: t("explorations.description"),
|
|
icon: Icons.explorations,
|
|
},
|
|
]
|
|
|
|
return (
|
|
<div className="bg-cover-gradient">
|
|
<AppContent className="mx-auto">
|
|
<section className="flex flex-col gap-16 py-16 md:pb-24">
|
|
<div className="flex flex-col text-center">
|
|
<h6 className="py-6 font-sans text-base font-bold uppercase tracking-[4px] text-tuatara-950">
|
|
{t("whatWeDo")}
|
|
</h6>
|
|
<h3 className="font-display text-[18px] font-bold text-tuatara-950 md:text-3xl">
|
|
{t("whatWeDoDescription")}
|
|
</h3>
|
|
</div>
|
|
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3">
|
|
{content.map((item, index) => (
|
|
<article
|
|
className="border-tuatara-300 flex flex-col gap-2 rounded-[6px] border bg-white px-8 py-4"
|
|
key={index}
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<div className="w-4">
|
|
<item.icon />
|
|
</div>
|
|
<h6 className="font-sans text-base font-bold uppercase tracking-[4px] text-anakiwa-700">
|
|
{item.title}
|
|
</h6>
|
|
</div>
|
|
<p className="font-sans text-base text-tuatara-950">
|
|
{item.description}
|
|
</p>
|
|
</article>
|
|
))}
|
|
</div>
|
|
</section>
|
|
</AppContent>
|
|
</div>
|
|
)
|
|
}
|