import { Skeleton } from "ui/skeleton"; import { Card, CardDescription, CardHeader, CardTitle } from "ui/card"; import { BackgroundPaths } from "ui/background-paths"; import { getTranslations } from "next-intl/server"; export default async function AgentsLoading() { const t = await getTranslations(); return (

{t("Layout.agents")}

{/* My Agents Section */}

{t("Agent.myAgents")}

{/* Create new agent card */}

{t("Agent.newAgent")}

{t("Layout.createYourOwnAgent")}

{/* Agent cards */} {Array(5) .fill(null) .map((_, i) => ( ))}
{/* Shared Agents Section */}

{t("Agent.sharedAgents")}

{Array(6) .fill(null) .map((_, i) => ( ))}
); }