"use client"; import { useLanguage } from "@/components/language-provider"; import { Section, SectionHeading } from "@/components/ui/section"; import { PRODUCTS } from "@/lib/content"; export function Ecosystem() { const { t, lang } = useLanguage(); return (
{PRODUCTS.map((p) => (
{p.name.charAt(0)}
{p.name}
{p.category[lang]}

{p.tagline[lang]}

{p.status === "connected" ? lang === "fa" ? "متصل شده" : "Connected" : lang === "fa" ? "آینده" : "Future"}
))}
+ {t.ecosystem.futureNote}
{t.ecosystem.hubLabel}
); }