"use client" import { ArrowUpRightIcon, Clock3Icon } from "lucide-react" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card" import { useI18n } from "@/i18n/provider" type DashboardPlaceholderProps = { eyebrow: string title: string description: string nextSteps: string[] } export function DashboardPlaceholder({ eyebrow, title, description, nextSteps, }: DashboardPlaceholderProps) { const t = useI18n() return (
{eyebrow} {title} {description}

{t("placeholder.nextSteps")}

{nextSteps.map((item) => (

{item}

))}

{t("placeholder.status")}

{t("placeholder.statusDescription")}

) }