{item.title}
{item.description}
"use client" import { Icons } from "../icons" import { AppContent } from "../ui/app-content" import { LABELS } from "@/app/labels" import Link from "next/link" type OurWorkContent = { title: string description: string icon: any action?: string link: string } export const OurWork = () => { const content: OurWorkContent[] = [ { title: LABELS.WHAT_WE_DO_SECTION.BUILD.TITLE, description: LABELS.WHAT_WE_DO_SECTION.BUILD.DESCRIPTION, action: LABELS.WHAT_WE_DO_SECTION.BUILD.ACTION, link: "/projects", icon: Icons.privacy, }, { title: LABELS.WHAT_WE_DO_SECTION.RESEARCH.TITLE, description: LABELS.WHAT_WE_DO_SECTION.RESEARCH.DESCRIPTION, action: LABELS.WHAT_WE_DO_SECTION.RESEARCH.ACTION, link: "/research", icon: Icons.scaling, }, ] return (
{item.description}