{
  "$schema": "/schemas/registry-item.json",
  "name": "finance-dashboard",
  "type": "registry:page",
  "title": "Finance Dashboard",
  "description": "A responsive finance operations workspace for revenue, payments, customers, cash health, transactions, and collaborator payouts.",
  "categories": [
    "dashboard",
    "finance",
    "operations"
  ],
  "dependencies": [],
  "registryDependencies": [
    "avatar",
    "badge",
    "button",
    "card",
    "input",
    "progress",
    "select",
    "table"
  ],
  "files": [
    {
      "path": "site/app/themes/finance-dashboard/preview/page.tsx",
      "type": "registry:page",
      "target": "app/finance-dashboard/page.tsx",
      "content": "import { createSeoMetadata } from \"@/app/seo\";\nimport type { Metadata } from \"next\";\nimport ThemeIcon, { type ThemeIconName } from \"./ThemeIcon\";\nimport { Avatar, Badge, Button, Card, CardHeader, IconButton, Progress, SearchField, SelectControl } from \"./DashboardComponents\";\nimport \"./finance-dashboard.css\";\n\nexport const metadata: Metadata = createSeoMetadata({ path: \"/themes/finance-dashboard/preview\", ...{ title: \"Nusa Ledger — Finance operations dashboard\", description: \"An original finance operations dashboard template built with Coordiation components and utilities.\" } });\n\nconst navigation: Array<{ label: string; icon: ThemeIconName; badge?: string }> = [\n  { label: \"Overview\", icon: \"home-2\" }, { label: \"Payments\", icon: \"wallet-money\" }, { label: \"Transactions\", icon: \"transfer-horizontal\" }, { label: \"Cards\", icon: \"card\", badge: \"12\" }, { label: \"Customers\", icon: \"users-group-rounded\" }, { label: \"Messages\", icon: \"chat-round\", badge: \"4\" }, { label: \"Calendar\", icon: \"calendar\" }, { label: \"Invoices\", icon: \"bill-list\" },\n];\nconst resources: Array<{ label: string; icon: ThemeIconName }> = [\n  { label: \"Analytics\", icon: \"chart-2\" }, { label: \"Documents\", icon: \"document-text\" }, { label: \"Integrations\", icon: \"widget-4\" }, { label: \"Settings\", icon: \"settings\" },\n];\nconst metrics = [\n  { label: \"Net revenue\", value: \"Rp 842,6 jt\", delta: \"+12,8%\", icon: \"graph-new-up\" as ThemeIconName, tone: \"violet\" },\n  { label: \"New invoices\", value: \"184\", delta: \"+8,4%\", icon: \"document-text\" as ThemeIconName, tone: \"blue\" },\n  { label: \"Active customers\", value: \"2.491\", delta: \"+5,6%\", icon: \"users-group-rounded\" as ThemeIconName, tone: \"mint\" },\n  { label: \"Avg. payment\", value: \"Rp 4,8 jt\", delta: \"+3,1%\", icon: \"wallet\" as ThemeIconName, tone: \"orange\" },\n];\nconst months = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\nconst barValues = [64, 52, 38, 59, 33, 61, 41, 46, 68, 35, 82, 56];\nconst transactions = [\n  { initials: \"AR\", name: \"Arunika Studio\", id: \"TX-8042\", date: \"29 Aug 2026\", amount: \"Rp 18.500.000\", status: \"Completed\", tone: \"success\" as const },\n  { initials: \"KG\", name: \"Kawan Guna\", id: \"TX-8036\", date: \"28 Aug 2026\", amount: \"Rp 7.250.000\", status: \"Pending\", tone: \"warning\" as const },\n  { initials: \"NU\", name: \"Nusa Urban Lab\", id: \"TX-8028\", date: \"27 Aug 2026\", amount: \"Rp 12.800.000\", status: \"Completed\", tone: \"success\" as const },\n  { initials: \"RB\", name: \"Ruang Bersama\", id: \"TX-8019\", date: \"25 Aug 2026\", amount: \"Rp 4.150.000\", status: \"Review\", tone: \"danger\" as const },\n  { initials: \"SP\", name: \"Sapa Pangan\", id: \"TX-8007\", date: \"23 Aug 2026\", amount: \"Rp 9.720.000\", status: \"Completed\", tone: \"success\" as const },\n];\nconst people = [\n  { initials: \"NA\", name: \"Nadia Anwar\", role: \"Research lead\", amount: \"Rp 8,4 jt\" }, { initials: \"BS\", name: \"Bima Santoso\", role: \"Product partner\", amount: \"Rp 6,7 jt\" }, { initials: \"TM\", name: \"Tara Mahesa\", role: \"Design advisor\", amount: \"Rp 5,9 jt\" }, { initials: \"RP\", name: \"Raka Putra\", role: \"Operations\", amount: \"Rp 4,2 jt\" },\n];\n\nfunction NavItem({ label, icon, badge, active = false }: { label: string; icon: ThemeIconName; badge?: string; active?: boolean }) {\n  return <a className={`fd-nav-item co-flex co-items-center co-rounded-lg${active ? \" is-active\" : \"\"}`} href={`#${label.toLowerCase()}`}><ThemeIcon name={icon} size={18} tone={active ? \"light\" : \"muted\"} /><span>{label}</span>{badge && <Badge tone={active ? \"brand\" : \"neutral\"}>{badge}</Badge>}</a>;\n}\n\nexport default function FinanceDashboardPreview() {\n  return <main className=\"coordiation-finance-dashboard co-grid co-min-h-screen\">\n    <aside className=\"fd-sidebar co-flex co-flex-col\" aria-label=\"Dashboard sidebar\">\n      <a className=\"fd-brand co-flex co-items-center\" href=\"#overview\"><span className=\"co-inline-flex co-items-center co-justify-center co-rounded-lg\"><ThemeIcon name=\"chart-2\" size={22} tone=\"light\" /></span><b>Nusa Ledger</b></a>\n      <p className=\"fd-nav-label co-uppercase\">Workspace</p><nav className=\"co-grid\">{navigation.map((item, index) => <NavItem {...item} active={index === 0} key={item.label} />)}</nav>\n      <p className=\"fd-nav-label co-uppercase\">System</p><nav className=\"co-grid\">{resources.map((item) => <NavItem {...item} key={item.label} />)}</nav>\n      <div className=\"fd-sidebar-help co-rounded-xl\"><ThemeIcon name=\"wallet\" size={24} tone=\"brand\" /><b>Need a hand?</b><p>Open the finance operations guide and reconciliation checklist.</p><a className=\"co-inline-flex co-items-center\" href=\"#footer\">View guide <ThemeIcon name=\"arrow-right\" size={14} tone=\"light\" /></a></div>\n    </aside>\n\n    <section className=\"fd-app-shell\">\n      <header className=\"fd-topbar co-flex co-items-center co-justify-between\">\n        <div className=\"co-flex co-items-center\"><IconButton label=\"Toggle sidebar\"><ThemeIcon name=\"hamburger-menu\" size={20} /></IconButton><SearchField /></div>\n        <div className=\"fd-top-actions co-flex co-items-center\"><IconButton label=\"Change appearance\"><ThemeIcon name=\"sun\" size={19} /></IconButton><IconButton label=\"Notifications\" className=\"has-dot\"><ThemeIcon name=\"bell\" size={19} /></IconButton><div className=\"fd-profile co-flex co-items-center\"><Avatar initials=\"WA\" tone={4} /><span><b>Wiryo A.</b><small className=\"co-block\">Administrator</small></span><ThemeIcon name=\"alt-arrow-down\" size={14} tone=\"muted\" /></div></div>\n      </header>\n\n      <div className=\"fd-content\" id=\"overview\">\n        <div className=\"fd-page-heading co-flex co-items-center co-justify-between\"><div><p className=\"co-uppercase\">Finance workspace</p><h1>Good morning, Wiryo.</h1></div><div className=\"co-flex co-items-center\"><Button variant=\"outline\"><ThemeIcon name=\"calendar\" size={16} />29 Aug 2026</Button><Button><ThemeIcon name=\"document-text\" size={16} tone=\"light\" />Create invoice</Button></div></div>\n\n        <section className=\"fd-summary-grid co-grid\" aria-label=\"Financial summary\">\n          <Card className=\"fd-promo-card\"><p className=\"co-uppercase\">Cash clarity</p><h2>Keep every useful<br />project funded.</h2><p>Forecast runway, reconcile payments, and track the work that creates public value.</p><Button variant=\"soft\">Review forecast <ThemeIcon name=\"arrow-right\" size={15} tone=\"brand\" /></Button><span className=\"fd-orbit fd-orbit-one co-absolute co-rounded-full\"/><span className=\"fd-orbit fd-orbit-two co-absolute co-rounded-full\"/></Card>\n          <Card className=\"fd-balance-card\"><CardHeader title=\"Available balance\" action={<SelectControl>IDR</SelectControl>} /><strong>Rp 1.284.650.000</strong><p><ThemeIcon name=\"graph-new-up\" size={15} tone=\"success\" /> 11,4% above last month</p><div className=\"co-flex co-items-center\"><Button>Transfer</Button><Button variant=\"soft\">Request</Button></div><span className=\"fd-balance-watermark co-absolute\"><ThemeIcon name=\"wallet-money\" size={150} tone=\"brand\" /></span></Card>\n          <div className=\"fd-metric-grid co-grid\">{metrics.map((metric) => <Card className={`fd-metric fd-metric-${metric.tone}`} key={metric.label}><div className=\"co-flex co-items-center co-justify-between\"><small className=\"co-uppercase\">{metric.label}</small><span className=\"co-inline-flex co-items-center co-justify-center co-rounded-lg\"><ThemeIcon name={metric.icon} size={20} tone=\"brand\" /></span></div><strong className=\"co-block\">{metric.value}</strong><Badge tone=\"success\">{metric.delta}</Badge></Card>)}</div>\n        </section>\n\n        <section className=\"fd-insight-grid co-grid\" id=\"analytics\">\n          <Card className=\"fd-report-card\"><CardHeader title=\"Revenue report\" eyebrow=\"Year to date\" action={<SelectControl>This year</SelectControl>} /><div className=\"fd-chart-area co-flex co-items-end co-justify-between\">{barValues.map((value, index) => <div className=\"fd-bar-column co-flex co-flex-col co-items-center\" key={months[index]}><span className=\"fd-bar-track co-flex co-items-end co-rounded-full\"><i className=\"co-block co-rounded-full\" style={{ height: `${value}%` }} /></span><small>{months[index]}</small></div>)}</div><div className=\"fd-chart-legend co-flex co-items-center\"><span><i className=\"fd-dot fd-dot-brand\"/>Revenue</span><span><i className=\"fd-dot fd-dot-muted\"/>Operating cost</span><strong>+18,2% growth</strong></div></Card>\n          <Card className=\"fd-health-card\"><CardHeader title=\"Cash health\" action={<SelectControl>Weekly</SelectControl>} /><div className=\"fd-gauge co-flex co-items-center co-justify-center co-rounded-full\"><div className=\"co-flex co-flex-col co-items-center co-justify-center co-rounded-full\"><strong>82%</strong><small>Healthy</small></div></div><div className=\"fd-health-stats co-grid\"><span><small>Income</small><b>68%</b></span><span><small>Expense</small><b>24%</b></span><span><small>Reserve</small><b>8%</b></span></div><div className=\"fd-health-note co-flex co-items-center co-rounded-lg\"><ThemeIcon name=\"check-circle\" size={22} tone=\"success\" /><p><b>Runway is on track.</b><small className=\"co-block\">11 months at the current pace.</small></p></div></Card>\n          <Card className=\"fd-currency-card\"><CardHeader title=\"Currency snapshot\" action={<IconButton label=\"Refresh currency rates\"><ThemeIcon name=\"refresh\" size={17}/></IconButton>} />{[[\"ID\",\"Indonesian rupiah\",\"1,0000\",\"+0,4%\"],[\"US\",\"US dollar\",\"0,000061\",\"+0,8%\"],[\"SG\",\"Singapore dollar\",\"0,000082\",\"+0,2%\"],[\"AU\",\"Australian dollar\",\"0,000093\",\"-0,1%\"],[\"EU\",\"Euro\",\"0,000056\",\"+0,5%\"]].map((rate,index)=><div className=\"fd-rate co-flex co-items-center\" key={rate[0]}><Avatar initials={rate[0]} size=\"sm\" tone={index}/><span><b>{rate[1]}</b><small className=\"co-block\">{rate[2]}</small></span><Badge tone={rate[3].startsWith(\"-\")?\"danger\":\"success\"}>{rate[3]}</Badge></div>)}<div className=\"fd-rate-range co-grid\"><span><small>Best rate</small><b>+0,8%</b></span><span><small>Risk watch</small><b>-0,1%</b></span></div></Card>\n        </section>\n\n        <section className=\"fd-operations-grid co-grid\" id=\"transactions\">\n          <Card className=\"fd-allocation-card\"><CardHeader title=\"Fund allocation\" eyebrow=\"Current balance\" action={<strong>Rp 842,6 jt</strong>} /><div className=\"fd-donut co-rounded-full\"><span className=\"co-flex co-items-center co-justify-center co-rounded-full\"><b>68%</b></span></div><div className=\"fd-allocation-list co-grid\"><span><i className=\"fd-dot fd-dot-brand\"/>Delivery <b>48%</b></span><span><i className=\"fd-dot fd-dot-blue\"/>People <b>28%</b></span><span><i className=\"fd-dot fd-dot-orange\"/>Reserve <b>16%</b></span><span><i className=\"fd-dot fd-dot-mint\"/>Learning <b>8%</b></span></div><Progress value={68} label=\"Budget deployed\" /><small className=\"co-block\">68% of this quarter&apos;s operating budget has been deployed.</small></Card>\n          <Card className=\"fd-transactions-card\"><CardHeader title=\"Transaction history\" action={<SelectControl>This month</SelectControl>} /><div className=\"fd-table-wrap\"><table><thead><tr><th>Customer</th><th>Date</th><th>Amount</th><th>Status</th><th><span className=\"co-sr-only\">Actions</span></th></tr></thead><tbody>{transactions.map((transaction,index)=><tr key={transaction.id}><td><span className=\"co-flex co-items-center\"><Avatar initials={transaction.initials} tone={index}/><span><b>{transaction.name}</b><small className=\"co-block\">{transaction.id}</small></span></span></td><td>{transaction.date}</td><td><b>{transaction.amount}</b></td><td><Badge tone={transaction.tone}>{transaction.status}</Badge></td><td><span className=\"co-flex co-items-center\"><IconButton label={`Print ${transaction.id}`}><ThemeIcon name=\"printer\" size={15}/></IconButton><IconButton label={`Delete ${transaction.id}`}><ThemeIcon name=\"trash-bin-2\" size={15}/></IconButton></span></td></tr>)}</tbody></table></div></Card>\n          <Card className=\"fd-people-card\"><CardHeader title=\"Pay collaborators\" action={<IconButton label=\"Add collaborator\"><ThemeIcon name=\"user-plus\" size={17}/></IconButton>} />{people.map((person,index)=><div className=\"fd-person co-flex co-items-center\" key={person.name}><Avatar initials={person.initials} tone={index+2}/><span><b>{person.name}</b><small className=\"co-block\">{person.role}</small></span><strong>{person.amount}</strong><IconButton label={`Pay ${person.name}`}><ThemeIcon name=\"arrow-right\" size={15}/></IconButton></div>)}<Button variant=\"outline\" className=\"co-w-full\">Manage collaborators</Button></Card>\n        </section>\n      </div>\n      <footer className=\"fd-footer co-flex co-items-center co-justify-between\" id=\"footer\"><span>© 2026 Coordiation</span><span>Built with Coordiation components and CSS utilities.</span><a className=\"co-inline-flex co-items-center\" href=\"#overview\">Back to overview <ThemeIcon name=\"arrow-right\" size={14} /></a></footer>\n    </section>\n  </main>;\n}\n"
    },
    {
      "path": "site/app/themes/finance-dashboard/preview/finance-dashboard.css",
      "type": "registry:style",
      "target": "app/finance-dashboard/finance-dashboard.css",
      "content": ".coordiation-finance-dashboard{--fd-ink:#172033;--fd-muted:#71809a;--fd-line:#e4e9f2;--fd-canvas:#f5f7fb;--fd-card:#fff;--fd-sidebar:#121827;--fd-brand:#5c55f5;--fd-brand-dark:#443bd7;--fd-brand-soft:#eeedff;--fd-blue:#43a9f3;--fd-mint:#19b99a;--fd-orange:#f59b45;--fd-red:#ef6478;background:var(--fd-canvas);color:var(--fd-ink);display:grid;font-family:Arial,Helvetica,sans-serif;font-size:14px;grid-template-columns:248px minmax(0,1fr);line-height:1.5;min-width:0;width:100%}.coordiation-finance-dashboard *{box-sizing:border-box}.coordiation-finance-dashboard h1,.coordiation-finance-dashboard h2,.coordiation-finance-dashboard h3,.coordiation-finance-dashboard p{margin:0}.coordiation-finance-dashboard button,.coordiation-finance-dashboard input{font:inherit}.coordiation-finance-dashboard button{cursor:pointer}.coordiation-finance-dashboard a{color:inherit;text-decoration:none}.fd-icon{display:inline-block;flex:0 0 auto;object-fit:contain}.fd-icon-light{filter:brightness(0) invert(1)}.fd-icon-brand{filter:invert(38%) sepia(77%) saturate(2829%) hue-rotate(229deg) brightness(96%)}.fd-icon-muted{opacity:.56}.fd-icon-success{filter:invert(57%) sepia(54%) saturate(738%) hue-rotate(121deg)}.fd-icon-danger{filter:invert(50%) sepia(70%) saturate(800%) hue-rotate(305deg)}\n:where(.coordiation-finance-dashboard .co-grid){display:grid}:where(.coordiation-finance-dashboard .co-flex){display:flex}:where(.coordiation-finance-dashboard .co-inline-flex){display:inline-flex}:where(.coordiation-finance-dashboard .co-block){display:block}:where(.coordiation-finance-dashboard .co-flex-col){flex-direction:column}:where(.coordiation-finance-dashboard .co-items-center){align-items:center}:where(.coordiation-finance-dashboard .co-items-end){align-items:flex-end}:where(.coordiation-finance-dashboard .co-justify-center){justify-content:center}:where(.coordiation-finance-dashboard .co-justify-between){justify-content:space-between}:where(.coordiation-finance-dashboard .co-rounded-lg){border-radius:10px}:where(.coordiation-finance-dashboard .co-rounded-xl){border-radius:14px}:where(.coordiation-finance-dashboard .co-rounded-full){border-radius:9999px}:where(.coordiation-finance-dashboard .co-border){border:1px solid var(--fd-line)}:where(.coordiation-finance-dashboard .co-bg-white){background:#fff}:where(.coordiation-finance-dashboard .co-shadow-sm){box-shadow:0 8px 24px rgba(29,43,76,.045)}:where(.coordiation-finance-dashboard .co-font-medium){font-weight:600}:where(.coordiation-finance-dashboard .co-font-semibold){font-weight:700}:where(.coordiation-finance-dashboard .co-uppercase){text-transform:uppercase}:where(.coordiation-finance-dashboard .co-transition){transition:.16s ease}:where(.coordiation-finance-dashboard .co-w-full){width:100%}:where(.coordiation-finance-dashboard .co-min-h-screen){min-height:100vh}:where(.coordiation-finance-dashboard .co-absolute){position:absolute}:where(.coordiation-finance-dashboard .co-sr-only){clip:rect(0,0,0,0);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;white-space:nowrap;width:1px}\n.fd-card{min-width:0;position:relative}.fd-card-header{gap:20px;margin-bottom:24px}.fd-card-header h2{font-size:16px;letter-spacing:-.015em}.fd-card-header small{color:#98a3b7;font-size:10px;font-weight:700;letter-spacing:.09em;margin-bottom:4px}.fd-button{border:0;gap:8px;min-height:40px;padding:0 16px}.fd-button-primary{background:var(--fd-brand);color:#fff}.fd-button-primary:hover{background:var(--fd-brand-dark);transform:translateY(-1px)}.fd-button-soft{background:var(--fd-brand-soft);color:var(--fd-brand-dark)}.fd-button-outline{background:#fff;border:1px solid var(--fd-line);color:var(--fd-ink)}.fd-button-ghost{background:transparent;color:var(--fd-muted)}.fd-badge{font-size:10px;line-height:1;padding:5px 8px}.fd-badge-neutral{background:#222b3d;color:#c2cad8}.fd-badge-brand{background:#716afb;color:#fff}.fd-badge-success{background:#e2f8f2;color:#11856e}.fd-badge-warning{background:#fff2df;color:#b86f1d}.fd-badge-danger{background:#ffe8ed;color:#c94d64}.fd-avatar{color:#fff;letter-spacing:.02em}.fd-avatar-sm{font-size:9px;height:28px;width:28px}.fd-avatar-md{font-size:11px;height:38px;width:38px}.fd-avatar-lg{font-size:13px;height:46px;width:46px}.fd-avatar-tone-0{background:#5b54ef}.fd-avatar-tone-1{background:#e66c86}.fd-avatar-tone-2{background:#17aa91}.fd-avatar-tone-3{background:#ef9b42}.fd-avatar-tone-4{background:#34415f}.fd-avatar-tone-5{background:#5d95d7}.fd-icon-button{background:transparent;border:0;color:var(--fd-ink);height:36px;padding:0;width:36px}.fd-icon-button:hover{background:#eef1f7}.fd-icon-button.has-dot{position:relative}.fd-icon-button.has-dot:after{background:var(--fd-red);border:2px solid #fff;border-radius:50%;content:\"\";height:8px;position:absolute;right:7px;top:6px;width:8px}.fd-search{background:#f8f9fc;border:1px solid var(--fd-line);gap:10px;height:42px;padding:0 15px;width:min(330px,34vw)}.fd-search input{background:transparent;border:0;color:var(--fd-ink);min-width:0;outline:0;width:100%}.fd-search input::placeholder{color:#9ca7ba}.fd-select{background:#f7f8fb;border:1px solid transparent;color:#5c6880;font-size:11px;gap:18px;min-height:36px;padding:0 11px}.fd-select:hover{border-color:var(--fd-line)}.fd-progress{background:#edf0f5;border-radius:999px;height:7px;overflow:hidden;width:100%}.fd-progress span{display:block;height:100%;border-radius:inherit}.fd-progress-brand{background:var(--fd-brand)}.fd-progress-success{background:var(--fd-mint)}.fd-progress-warning{background:var(--fd-orange)}\n.fd-sidebar{background:var(--fd-sidebar);color:#aeb9cd;height:100vh;left:0;overflow:auto;padding:24px 16px;position:sticky;top:0}.fd-sidebar .fd-icon-muted{filter:brightness(0) invert(1);opacity:.72}.fd-sidebar .fd-nav-item:hover .fd-icon-muted{opacity:1}.fd-brand{color:#fff;gap:11px;margin:0 8px 34px}.fd-brand>span{background:linear-gradient(135deg,#7e78ff,#4a42df);height:36px;width:36px}.fd-brand b{font-size:17px}.fd-nav-label{color:#8794ad;font-size:9px;font-weight:700;letter-spacing:.15em;margin:23px 10px 9px}.fd-sidebar nav{gap:4px}.fd-nav-item{gap:12px;min-height:42px;padding:0 11px}.fd-nav-item>span:not(.fd-badge){flex:1;font-size:12px;font-weight:600}.fd-nav-item>.fd-badge{flex:0 0 auto;height:22px;justify-content:center;min-width:26px;padding:0 8px;width:max-content}.fd-nav-item:hover{background:#1b2436;color:#fff}.fd-nav-item.is-active{background:var(--fd-brand);color:#fff;box-shadow:0 10px 28px rgba(86,77,238,.24)}.fd-sidebar-help{background:#1b2436;margin-top:auto;padding:18px}.fd-sidebar-help b{color:#fff;display:block;margin-top:12px}.fd-sidebar-help p{color:#8290a8;font-size:11px;margin:5px 0 14px}.fd-sidebar-help a{color:#fff;font-size:11px;font-weight:700;gap:6px}.fd-app-shell{min-width:0}.fd-topbar{background:#fff;border-bottom:1px solid var(--fd-line);height:72px;padding:0 28px;position:sticky;top:0;z-index:10}.fd-topbar>div{gap:12px}.fd-top-actions{gap:4px}.fd-profile{border-left:1px solid var(--fd-line);gap:10px;margin-left:8px;padding-left:16px}.fd-profile>span{font-size:11px}.fd-profile small{color:var(--fd-muted);font-size:9px;font-weight:400}.fd-content{padding:30px}.fd-page-heading{gap:20px;margin-bottom:24px}.fd-page-heading>div:first-child>p{color:#8a96aa;font-size:9px;font-weight:700;letter-spacing:.12em}.fd-page-heading h1{font-size:26px;letter-spacing:-.04em;margin-top:4px}.fd-page-heading>div:last-child{gap:9px}\n.fd-summary-grid{gap:18px;grid-template-columns:1fr 1fr 1.12fr}.fd-promo-card{background:linear-gradient(135deg,#4539dc 0%,#675ff8 58%,#6e78ff 100%);border:0;color:#fff;min-height:230px;overflow:hidden;padding:25px}.fd-promo-card>p:first-child{font-size:9px;font-weight:700;letter-spacing:.13em;opacity:.7}.fd-promo-card h2{font-size:24px;line-height:1.18;margin:10px 0}.fd-promo-card>p:nth-of-type(2){font-size:11px;line-height:1.65;max-width:300px;opacity:.78}.fd-promo-card .fd-button{margin-top:20px;position:relative;z-index:2}.fd-orbit{border:1px solid rgba(255,255,255,.2);height:210px;right:-75px;top:12px;width:210px}.fd-orbit-two{height:135px;right:-15px;top:82px;width:135px}.fd-promo-card:after{background:linear-gradient(120deg,transparent,rgba(255,255,255,.13),transparent);content:\"\";height:160%;position:absolute;right:20%;top:-30%;transform:rotate(28deg);width:40px}.fd-balance-card{min-height:230px;overflow:hidden;padding:24px}.fd-balance-card>strong{display:block;font-size:25px;letter-spacing:-.035em;margin:28px 0 8px;position:relative;z-index:1}.fd-balance-card>p{align-items:center;color:var(--fd-muted);display:flex;font-size:11px;gap:5px;position:relative;z-index:1}.fd-balance-card>div:last-of-type{gap:9px;margin-top:27px;position:relative;z-index:1}.fd-balance-watermark{bottom:-35px;opacity:.055;right:-18px;transform:rotate(-12deg)}.fd-metric-grid{gap:18px;grid-template-columns:1fr 1fr}.fd-metric{min-height:106px;overflow:hidden;padding:17px}.fd-metric small{color:#8995aa;font-size:9px;font-weight:700;letter-spacing:.08em}.fd-metric>div>span{background:var(--fd-brand-soft);height:36px;width:36px}.fd-metric-blue>div>span{background:#e7f5ff}.fd-metric-mint>div>span{background:#e3f8f3}.fd-metric-orange>div>span{background:#fff1e3}.fd-metric>strong{font-size:19px;letter-spacing:-.02em;margin:-2px 0 7px}.fd-metric .fd-badge{position:absolute;bottom:17px;right:17px}\n.fd-insight-grid{gap:18px;grid-template-columns:minmax(0,1.7fr) minmax(280px,.75fr) minmax(280px,.72fr);margin-top:18px}.fd-report-card,.fd-health-card,.fd-currency-card{min-height:410px;padding:22px}.fd-chart-area{border-bottom:1px solid var(--fd-line);gap:12px;height:255px;padding:20px 8px 0}.fd-bar-column{gap:10px;height:100%;justify-content:flex-end;min-width:0;width:100%}.fd-bar-track{background:#ecf0f6;height:190px;overflow:hidden;width:10px}.fd-bar-track i{background:linear-gradient(180deg,#756dff,var(--fd-brand));min-height:18px;width:100%}.fd-bar-column:nth-child(3n) .fd-bar-track i{background:linear-gradient(180deg,#67c6ff,var(--fd-blue))}.fd-bar-column small{color:#758198;font-size:9px}.fd-chart-legend{color:#77839a;font-size:10px;gap:16px;padding-top:18px}.fd-chart-legend span,.fd-allocation-list span{align-items:center;display:flex;gap:6px}.fd-chart-legend strong{color:var(--fd-mint);font-size:10px;margin-left:auto}.fd-dot{border-radius:50%;display:inline-block;height:7px;width:7px}.fd-dot-brand{background:var(--fd-brand)}.fd-dot-muted{background:#d8dee8}.fd-dot-blue{background:var(--fd-blue)}.fd-dot-orange{background:var(--fd-orange)}.fd-dot-mint{background:var(--fd-mint)}.fd-gauge{background:conic-gradient(from 225deg,var(--fd-brand) 0 61%,#e9edf5 61% 75%,transparent 75%);height:190px;margin:0 auto 8px;position:relative;width:190px}.fd-gauge:after{background:#fff;bottom:0;content:\"\";height:50%;left:0;position:absolute;width:100%}.fd-gauge>div{background:#fff;height:145px;position:relative;width:145px;z-index:1}.fd-gauge strong{font-size:29px}.fd-gauge small{color:var(--fd-muted);font-size:10px}.fd-health-stats{grid-template-columns:repeat(3,1fr);margin-top:-34px;position:relative;text-align:center;z-index:2}.fd-health-stats small{color:#96a1b4;display:block;font-size:9px;text-transform:uppercase}.fd-health-stats b{font-size:13px}.fd-health-note{background:#eef4ff;gap:10px;margin-top:24px;padding:12px}.fd-health-note p{font-size:10px}.fd-health-note small{color:#78859b;font-size:9px}.fd-rate{border-bottom:1px dashed var(--fd-line);gap:10px;padding:10px 0}.fd-rate>span:nth-child(2){flex:1}.fd-rate b{font-size:10px}.fd-rate small{color:#97a2b5;font-size:9px}.fd-rate-range{gap:10px;grid-template-columns:1fr 1fr;margin-top:18px}.fd-rate-range span{background:#f8f9fc;border:1px solid var(--fd-line);border-radius:10px;padding:12px;text-align:center}.fd-rate-range small{color:#9aa5b7;display:block;font-size:8px;text-transform:uppercase}.fd-rate-range b{color:var(--fd-brand);font-size:13px}\n.fd-operations-grid{gap:18px;grid-template-columns:minmax(260px,.72fr) minmax(0,1.55fr) minmax(280px,.75fr);margin-top:18px}.fd-allocation-card,.fd-transactions-card,.fd-people-card{min-height:405px;padding:22px}.fd-allocation-card .fd-card-header>div:last-child,.fd-allocation-card .fd-card-header>strong{font-size:12px}.fd-donut{background:conic-gradient(var(--fd-brand) 0 48%,var(--fd-blue) 48% 76%,var(--fd-orange) 76% 92%,var(--fd-mint) 92%);height:164px;margin:4px auto 22px;padding:22px;width:164px}.fd-donut>span{background:#fff;height:100%;width:100%}.fd-donut b{font-size:24px}.fd-allocation-list{font-size:10px;gap:8px;grid-template-columns:1fr 1fr;margin-bottom:22px}.fd-allocation-list b{margin-left:auto}.fd-allocation-card>small{color:#8b96a9;font-size:9px;margin-top:9px}.fd-table-wrap{overflow-x:auto}.fd-transactions-card table{border-collapse:collapse;min-width:660px;width:100%}.fd-transactions-card th{background:#f7f8fb;color:#7c889e;font-size:9px;font-weight:700;padding:10px 12px;text-align:left;text-transform:uppercase}.fd-transactions-card th:first-child{border-radius:8px 0 0 8px}.fd-transactions-card th:last-child{border-radius:0 8px 8px 0}.fd-transactions-card td{border-bottom:1px solid var(--fd-line);font-size:10px;padding:12px}.fd-transactions-card td:first-child>span{gap:10px}.fd-transactions-card td:first-child>span>span{min-width:0}.fd-transactions-card td small{color:#8e9aae;font-size:9px}.fd-transactions-card td:last-child>span{gap:0;justify-content:flex-end}.fd-transactions-card .fd-icon-button{height:28px;width:28px}.fd-person{border-bottom:1px solid var(--fd-line);gap:10px;padding:11px 0}.fd-person>span:nth-child(2){flex:1;min-width:0}.fd-person b{font-size:10px}.fd-person small{color:#929db0;font-size:9px}.fd-person>strong{color:var(--fd-brand);font-size:10px}.fd-person .fd-icon-button{height:28px;width:28px}.fd-people-card>.fd-button{margin-top:18px}.fd-footer{background:#fff;border-top:1px solid var(--fd-line);color:#7f8ba0;display:flex;font-size:10px;gap:30px;grid-template-columns:none;margin-top:30px;min-height:76px;padding:0 30px}.fd-footer a{color:var(--fd-brand);font-weight:700;gap:6px}\n@media(max-width:1500px){.fd-summary-grid{grid-template-columns:1fr 1fr}.fd-metric-grid{grid-column:1/-1;grid-template-columns:repeat(4,1fr)}.fd-insight-grid{grid-template-columns:minmax(0,1.5fr) minmax(280px,.8fr)}.fd-currency-card{grid-column:1/-1}.fd-currency-card>.fd-rate{display:inline-flex;margin-right:2%;width:18%}.fd-rate-range{max-width:420px}.fd-operations-grid{grid-template-columns:minmax(260px,.7fr) minmax(0,1.3fr)}.fd-people-card{grid-column:1/-1}.fd-people-card .fd-person{display:inline-flex;margin-right:2%;width:47%}}\n@media(max-width:1060px){.coordiation-finance-dashboard{grid-template-columns:78px minmax(0,1fr)}.fd-sidebar{padding:22px 12px}.fd-brand{justify-content:center;margin:0 0 30px}.fd-brand b,.fd-nav-label,.fd-nav-item>span,.fd-nav-item>.fd-badge,.fd-sidebar-help{display:none}.fd-nav-item{justify-content:center;padding:0}.fd-content{padding:24px}.fd-insight-grid,.fd-operations-grid{grid-template-columns:1fr}.fd-currency-card,.fd-people-card{grid-column:auto}.fd-people-card .fd-person{display:flex;margin:0;width:100%}}\n@media(max-width:760px){.coordiation-finance-dashboard{display:block}.fd-sidebar{display:none}.fd-topbar{height:64px;padding:0 16px}.fd-search{width:min(235px,58vw)}.fd-profile>span,.fd-profile>.fd-icon{display:none}.fd-content{padding:18px}.fd-page-heading{align-items:flex-start;flex-direction:column}.fd-page-heading h1{font-size:23px}.fd-page-heading>div:last-child{width:100%}.fd-page-heading .fd-button{flex:1}.fd-summary-grid{grid-template-columns:1fr}.fd-metric-grid{grid-column:auto;grid-template-columns:1fr 1fr}.fd-report-card,.fd-health-card,.fd-currency-card,.fd-allocation-card,.fd-transactions-card,.fd-people-card{padding:18px}.fd-chart-area{gap:6px;overflow:hidden}.fd-bar-track{width:7px}.fd-currency-card>.fd-rate{display:flex;margin:0;width:100%}.fd-footer{align-items:flex-start;flex-direction:column;gap:8px;padding:22px}.fd-footer span:nth-child(2){display:none}}\n@media(max-width:480px){.fd-topbar>.fd-top-actions>.fd-icon-button{display:none}.fd-search{width:240px}.fd-page-heading>div:last-child{flex-direction:column}.fd-page-heading .fd-button{width:100%}.fd-metric-grid{grid-template-columns:1fr}.fd-promo-card,.fd-balance-card{min-height:245px}.fd-chart-area{gap:3px;padding-inline:0}.fd-bar-column small{font-size:7px}.fd-chart-legend{align-items:flex-start;flex-direction:column}.fd-chart-legend strong{margin-left:0}.fd-health-stats{gap:4px}.fd-allocation-list{grid-template-columns:1fr}.fd-transactions-card{margin-left:-18px;margin-right:-18px;border-left:0;border-radius:0;border-right:0}.fd-card-header{align-items:flex-start;flex-direction:column}.fd-rate-range{grid-template-columns:1fr}.fd-person>strong{display:none}}\n"
    },
    {
      "path": "site/app/themes/finance-dashboard/preview/ThemeIcon.tsx",
      "type": "registry:component",
      "target": "app/finance-dashboard/ThemeIcon.tsx",
      "content": "const iconPaths = {\n  \"alt-arrow-down\": \"/icons/solar-linear/alt-arrow-down.svg\",\n  \"arrow-right\": \"/icons/solar-linear/arrow-right.svg\",\n  bell: \"/icons/solar-linear/bell.svg\",\n  \"bill-list\": \"/icons/solar-linear/bill-list.svg\",\n  calendar: \"/icons/solar-linear/calendar.svg\",\n  card: \"/icons/solar-linear/card.svg\",\n  \"cart-large-2\": \"/icons/solar-linear/cart-large-2.svg\",\n  \"chart-2\": \"/icons/solar-linear/chart-2.svg\",\n  \"chat-round\": \"/icons/solar-linear/chat-round.svg\",\n  \"check-circle\": \"/icons/solar-linear/check-circle.svg\",\n  \"clock-circle\": \"/icons/solar-linear/clock-circle.svg\",\n  \"close-circle\": \"/icons/solar-linear/close-circle.svg\",\n  dollar: \"/icons/solar-linear/dollar.svg\",\n  \"document-text\": \"/icons/solar-linear/document-text.svg\",\n  global: \"/icons/solar-linear/global.svg\",\n  \"graph-new-up\": \"/icons/solar-linear/graph-new-up.svg\",\n  \"hamburger-menu\": \"/icons/solar-linear/hamburger-menu.svg\",\n  \"home-2\": \"/icons/solar-linear/home-2.svg\",\n  letter: \"/icons/solar-linear/letter.svg\",\n  magnifier: \"/icons/solar-linear/magnifier.svg\",\n  \"menu-dots\": \"/icons/solar-linear/menu-dots.svg\",\n  \"pie-chart-2\": \"/icons/solar-linear/pie-chart-2.svg\",\n  printer: \"/icons/solar-linear/printer.svg\",\n  refresh: \"/icons/solar-linear/refresh.svg\",\n  settings: \"/icons/solar-linear/settings.svg\",\n  sun: \"/icons/solar-linear/sun.svg\",\n  \"transfer-horizontal\": \"/icons/solar-linear/transfer-horizontal.svg\",\n  \"trash-bin-2\": \"/icons/solar-linear/trash-bin-2.svg\",\n  \"user-plus\": \"/icons/solar-linear/user-plus.svg\",\n  \"user-rounded\": \"/icons/solar-linear/user-rounded.svg\",\n  \"users-group-rounded\": \"/icons/solar-linear/users-group-rounded.svg\",\n  wallet: \"/icons/solar-linear/wallet.svg\",\n  \"wallet-money\": \"/icons/solar-linear/wallet-money.svg\",\n  \"widget-4\": \"/icons/solar-linear/widget-4.svg\",\n} as const;\n\nexport type ThemeIconName = keyof typeof iconPaths;\n\nexport default function ThemeIcon({ name, size = 18, tone = \"default\", className = \"\" }: { name: ThemeIconName; size?: number; tone?: \"default\" | \"light\" | \"brand\" | \"muted\" | \"success\" | \"danger\"; className?: string }) {\n  return <img className={`fd-icon fd-icon-${tone} ${className}`.trim()} src={iconPaths[name]} width={size} height={size} alt=\"\" aria-hidden=\"true\" />;\n}\n"
    },
    {
      "path": "site/app/themes/finance-dashboard/preview/DashboardComponents.tsx",
      "type": "registry:component",
      "target": "app/finance-dashboard/DashboardComponents.tsx",
      "content": "import type { ButtonHTMLAttributes, HTMLAttributes, InputHTMLAttributes, ReactNode } from \"react\";\nimport ThemeIcon from \"./ThemeIcon\";\n\nfunction classes(base: string, className = \"\") { return `${base} ${className}`.trim(); }\n\nexport function Card({ className = \"\", ...props }: HTMLAttributes<HTMLElement>) {\n  return <section className={classes(\"fd-card co-rounded-xl co-border co-bg-white co-shadow-sm\", className)} {...props} />;\n}\n\nexport function CardHeader({ title, action, eyebrow }: { title: string; action?: ReactNode; eyebrow?: string }) {\n  return <header className=\"fd-card-header co-flex co-items-center co-justify-between\"><div>{eyebrow && <small className=\"co-block co-uppercase\">{eyebrow}</small>}<h2>{title}</h2></div>{action}</header>;\n}\n\nexport function Button({ className = \"\", variant = \"primary\", type = \"button\", ...props }: ButtonHTMLAttributes<HTMLButtonElement> & { variant?: \"primary\" | \"soft\" | \"outline\" | \"ghost\" }) {\n  return <button className={classes(`fd-button fd-button-${variant} co-inline-flex co-items-center co-justify-center co-rounded-lg co-font-medium co-transition`, className)} type={type} {...props} />;\n}\n\nexport function Badge({ children, tone = \"neutral\", className = \"\" }: { children: ReactNode; tone?: \"neutral\" | \"success\" | \"warning\" | \"danger\" | \"brand\"; className?: string }) {\n  return <span className={classes(`fd-badge fd-badge-${tone} co-inline-flex co-items-center co-rounded-full co-font-medium`, className)}>{children}</span>;\n}\n\nexport function Avatar({ initials, tone = 0, size = \"md\" }: { initials: string; tone?: number; size?: \"sm\" | \"md\" | \"lg\" }) {\n  return <span className={`fd-avatar fd-avatar-${size} fd-avatar-tone-${tone % 6} co-inline-flex co-items-center co-justify-center co-rounded-full co-font-semibold`} aria-hidden=\"true\">{initials}</span>;\n}\n\nexport function IconButton({ label, children, className = \"\", ...props }: ButtonHTMLAttributes<HTMLButtonElement> & { label: string }) {\n  return <button className={classes(\"fd-icon-button co-inline-flex co-items-center co-justify-center co-rounded-full co-transition\", className)} type=\"button\" aria-label={label} {...props}>{children}</button>;\n}\n\nexport function SearchField(props: InputHTMLAttributes<HTMLInputElement>) {\n  return <label className=\"fd-search co-flex co-items-center co-rounded-full\"><ThemeIcon name=\"magnifier\" size={18} tone=\"muted\" /><span className=\"co-sr-only\">Search dashboard</span><input type=\"search\" placeholder=\"Search reports, people, or payments\" {...props} /></label>;\n}\n\nexport function SelectControl({ children }: { children: ReactNode }) {\n  return <button className=\"fd-select co-inline-flex co-items-center co-justify-between co-rounded-lg\" type=\"button\">{children}<ThemeIcon name=\"alt-arrow-down\" size={14} tone=\"muted\" /></button>;\n}\n\nexport function Progress({ value, tone = \"brand\", label }: { value: number; tone?: \"brand\" | \"success\" | \"warning\"; label: string }) {\n  return <div className=\"fd-progress\" aria-label={`${label}: ${value}%`} role=\"progressbar\" aria-valuemin={0} aria-valuemax={100} aria-valuenow={value}><span className={`fd-progress-${tone}`} style={{ width: `${value}%` }} /></div>;\n}\n"
    },
    {
      "path": "site/public/icons/solar-linear/alt-arrow-down.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/alt-arrow-down.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-alt-arrow-down-linear\"><path d=\"M19 9L12 15L5 9\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/arrow-right.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/arrow-right.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-arrow-right-linear\"><path d=\"M4 12H20M14 18L20 12L14 6\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/bell.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/bell.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-bell-linear\"><path d=\"M18.7491 9.70957V9.00496C18.7491 5.13623 15.7274 2 12 2C8.27256 2 5.25087 5.13623 5.25087 9.00496V9.70957C5.25087 10.5552 5.00972 11.3818 4.5578 12.0854L3.45036 13.8095C2.43882 15.3843 3.21105 17.5249 4.97036 18.0229C9.57274 19.3257 14.4273 19.3257 19.0296 18.0229C20.789 17.5249 21.5612 15.3843 20.5496 13.8095L19.4422 12.0854C18.9903 11.3818 18.7491 10.5552 18.7491 9.70957Z\" stroke=\"currentColor\"/>\n<path d=\"M7.5 19C8.15503 20.7478 9.92246 22 12 22C14.0775 22 15.845 20.7478 16.5 19\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/bill-list.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/bill-list.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-bill-list-linear\"><path d=\"M16.755 2H7.24502C6.08614 2 5.50671 2 5.03939 2.16261C4.15322 2.47096 3.45748 3.18719 3.15795 4.09946C3 4.58055 3 5.17705 3 6.37006V20.3742C3 21.2324 3.985 21.6878 4.6081 21.1176C4.97417 20.7826 5.52583 20.7826 5.8919 21.1176L6.375 21.5597C7.01659 22.1468 7.98341 22.1468 8.625 21.5597C9.26659 20.9726 10.2334 20.9726 10.875 21.5597C11.5166 22.1468 12.4834 22.1468 13.125 21.5597C13.7666 20.9726 14.7334 20.9726 15.375 21.5597C16.0166 22.1468 16.9834 22.1468 17.625 21.5597L18.1081 21.1176C18.4742 20.7826 19.0258 20.7826 19.3919 21.1176C20.015 21.6878 21 21.2324 21 20.3742V6.37006C21 5.17705 21 4.58055 20.842 4.09946C20.5425 3.18719 19.8468 2.47096 18.9606 2.16261C18.4933 2 17.9139 2 16.755 2Z\" stroke=\"currentColor\"/>\n<path d=\"M10.5 11L17 11\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M7 11H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M7 7.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M7 14.5H7.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M10.5 7.5H17\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M10.5 14.5H17\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/calendar.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/calendar.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-calendar-linear\"><path d=\"M2 12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C22 6.34315 22 8.22876 22 12V14C22 17.7712 22 19.6569 20.8284 20.8284C19.6569 22 17.7712 22 14 22H10C6.22876 22 4.34315 22 3.17157 20.8284C2 19.6569 2 17.7712 2 14V12Z\" stroke=\"currentColor\"/>\n<path d=\"M7 4V2.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M17 4V2.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M2.5 9H21.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M17 13H17.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M12 13H12.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M7 13H7.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M17 17.0234H17.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M12 17.0234H12.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M7 17.0234H7.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/card.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/card.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-card-linear\"><path d=\"M2 12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C22 6.34315 22 8.22876 22 12C22 15.7712 22 17.6569 20.8284 18.8284C19.6569 20 17.7712 20 14 20H10C6.22876 20 4.34315 20 3.17157 18.8284C2 17.6569 2 15.7712 2 12Z\" stroke=\"currentColor\"/>\n<path d=\"M10 16H6\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M14 16H12.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M2 10L22 10\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/cart-large-2.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/cart-large-2.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-cart-large-2-linear\"><path d=\"M2 3L2.26491 3.0883C3.58495 3.52832 4.24497 3.74832 4.62248 4.2721C5 4.79587 5 5.49159 5 6.88304V9.5C5 12.3284 5 13.7426 5.87868 14.6213C6.75736 15.5 8.17157 15.5 11 15.5H19\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M7.5 18C8.32843 18 9 18.6716 9 19.5C9 20.3284 8.32843 21 7.5 21C6.67157 21 6 20.3284 6 19.5C6 18.6716 6.67157 18 7.5 18Z\" stroke=\"currentColor\"/>\n<path d=\"M16.5 18.0001C17.3284 18.0001 18 18.6716 18 19.5001C18 20.3285 17.3284 21.0001 16.5 21.0001C15.6716 21.0001 15 20.3285 15 19.5001C15 18.6716 15.6716 18.0001 16.5 18.0001Z\" stroke=\"currentColor\"/>\n<path d=\"M5 6H16.4504C18.5054 6 19.5328 6 19.9775 6.67426C20.4221 7.34853 20.0173 8.29294 19.2078 10.1818L18.7792 11.1818C18.4013 12.0636 18.2123 12.5045 17.8366 12.7523C17.4609 13 16.9812 13 16.0218 13H5\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/chart-2.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/chart-2.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-chart-2-linear\"><path d=\"M3 22H21\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M3 11C3 10.0572 3 9.58579 3.29289 9.29289C3.58579 9 4.05719 9 5 9C5.94281 9 6.41421 9 6.70711 9.29289C7 9.58579 7 10.0572 7 11V17C7 17.9428 7 18.4142 6.70711 18.7071C6.41421 19 5.94281 19 5 19C4.05719 19 3.58579 19 3.29289 18.7071C3 18.4142 3 17.9428 3 17V11Z\" stroke=\"currentColor\"/>\n<path d=\"M10 7C10 6.05719 10 5.58579 10.2929 5.29289C10.5858 5 11.0572 5 12 5C12.9428 5 13.4142 5 13.7071 5.29289C14 5.58579 14 6.05719 14 7V17C14 17.9428 14 18.4142 13.7071 18.7071C13.4142 19 12.9428 19 12 19C11.0572 19 10.5858 19 10.2929 18.7071C10 18.4142 10 17.9428 10 17V7Z\" stroke=\"currentColor\"/>\n<path d=\"M17 4C17 3.05719 17 2.58579 17.2929 2.29289C17.5858 2 18.0572 2 19 2C19.9428 2 20.4142 2 20.7071 2.29289C21 2.58579 21 3.05719 21 4V17C21 17.9428 21 18.4142 20.7071 18.7071C20.4142 19 19.9428 19 19 19C18.0572 19 17.5858 19 17.2929 18.7071C17 18.4142 17 17.9428 17 17V4Z\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/chat-round.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/chat-round.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-chat-round-linear\"><path d=\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 13.5997 2.37562 15.1116 3.04346 16.4525C3.22094 16.8088 3.28001 17.2161 3.17712 17.6006L2.58151 19.8267C2.32295 20.793 3.20701 21.677 4.17335 21.4185L6.39939 20.8229C6.78393 20.72 7.19121 20.7791 7.54753 20.9565C8.88837 21.6244 10.4003 22 12 22Z\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/check-circle.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/check-circle.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-check-circle-linear\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\"/>\n<path d=\"M8.5 12.5L10.5 14.5L15.5 9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/clock-circle.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/clock-circle.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-clock-circle-linear\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\"/>\n<path d=\"M12 8V12L14.5 14.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/close-circle.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/close-circle.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-close-circle-linear\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\"/>\n<path d=\"M14.5 9.50002L9.5 14.5M9.49998 9.5L14.5 14.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/dollar.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/dollar.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-dollar-linear\"><circle cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\"/>\n<path d=\"M12 6V18\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M15 9.5C15 8.11929 13.6569 7 12 7C10.3431 7 9 8.11929 9 9.5C9 10.8807 10.3431 12 12 12C13.6569 12 15 13.1193 15 14.5C15 15.8807 13.6569 17 12 17C10.3431 17 9 15.8807 9 14.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/document-text.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/document-text.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-document-text-linear\"><path d=\"M3 10C3 6.22876 3 4.34315 4.17157 3.17157C5.34315 2 7.22876 2 11 2H13C16.7712 2 18.6569 2 19.8284 3.17157C21 4.34315 21 6.22876 21 10V14C21 17.7712 21 19.6569 19.8284 20.8284C18.6569 22 16.7712 22 13 22H11C7.22876 22 5.34315 22 4.17157 20.8284C3 19.6569 3 17.7712 3 14V10Z\" stroke=\"currentColor\"/>\n<path d=\"M8 12H16\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M8 8H16\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M8 16H13\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/global.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/global.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-global-linear\"><path d=\"M22 12C22 13.3132 21.7413 14.6136 21.2388 15.8268C20.7362 17.0401 19.9997 18.1425 19.0711 19.0711C18.1425 19.9997 17.0401 20.7362 15.8268 21.2388C14.6136 21.7413 13.3132 22 12 22C10.6868 22 9.38642 21.7413 8.17317 21.2388C6.95991 20.7362 5.85752 19.9997 4.92893 19.0711C4.00035 18.1425 3.26375 17.0401 2.7612 15.8268C2.25866 14.6136 2 13.3132 2 12C2 10.6868 2.25866 9.38642 2.76121 8.17316C3.26375 6.95991 4.00035 5.85752 4.92893 4.92893C5.85752 4.00035 6.95991 3.26375 8.17317 2.7612C9.38642 2.25866 10.6868 2 12 2C13.3132 2 14.6136 2.25866 15.8268 2.76121C17.0401 3.26375 18.1425 4.00035 19.0711 4.92893C19.9997 5.85752 20.7362 6.95991 21.2388 8.17317C21.7413 9.38642 22 10.6868 22 12L22 12Z\" stroke=\"currentColor\"/>\n<path d=\"M16 12C16 13.3132 15.8965 14.6136 15.6955 15.8268C15.4945 17.0401 15.1999 18.1425 14.8284 19.0711C14.457 19.9997 14.016 20.7362 13.5307 21.2388C13.0454 21.7413 12.5253 22 12 22C11.4747 22 10.9546 21.7413 10.4693 21.2388C9.98396 20.7362 9.54301 19.9997 9.17157 19.0711C8.80014 18.1425 8.5055 17.0401 8.30448 15.8268C8.10346 14.6136 8 13.3132 8 12C8 10.6868 8.10346 9.38642 8.30448 8.17316C8.5055 6.95991 8.80014 5.85752 9.17157 4.92893C9.54301 4.00035 9.98396 3.26375 10.4693 2.7612C10.9546 2.25866 11.4747 2 12 2C12.5253 2 13.0454 2.25866 13.5307 2.76121C14.016 3.26375 14.457 4.00035 14.8284 4.92893C15.1999 5.85752 15.4945 6.95991 15.6955 8.17317C15.8965 9.38642 16 10.6868 16 12L16 12Z\" stroke=\"currentColor\"/>\n<path d=\"M2 12H22\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/graph-new-up.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/graph-new-up.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-graph-new-up-linear\"><path d=\"M22 10.5V12C22 16.714 22 19.0711 20.5355 20.5355C19.0711 22 16.714 22 12 22C7.28595 22 4.92893 22 3.46447 20.5355C2 19.0711 2 16.714 2 12C2 7.28595 2 4.92893 3.46447 3.46447C4.92893 2 7.28595 2 12 2H13.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<circle cx=\"19\" cy=\"5\" r=\"3\" stroke=\"currentColor\"/>\n<path d=\"M7 14L9.29289 11.7071C9.68342 11.3166 10.3166 11.3166 10.7071 11.7071L12.2929 13.2929C12.6834 13.6834 13.3166 13.6834 13.7071 13.2929L17 10M14.5 10H17V12.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/hamburger-menu.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/hamburger-menu.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-hamburger-menu-linear\"><path d=\"M20 7L4 7\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M20 12L4 12\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M20 17L4 17\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/home-2.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/home-2.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-home-2-linear\"><path d=\"M2 12.2039C2 9.91549 2 8.77128 2.5192 7.82274C3.0384 6.87421 3.98695 6.28551 5.88403 5.10813L7.88403 3.86687C9.88939 2.62229 10.8921 2 12 2C13.1079 2 14.1106 2.62229 16.116 3.86687L18.116 5.10812C20.0131 6.28551 20.9616 6.87421 21.4808 7.82274C22 8.77128 22 9.91549 22 12.2039V13.725C22 17.6258 22 19.5763 20.8284 20.7881C19.6569 22 17.7712 22 14 22H10C6.22876 22 4.34315 22 3.17157 20.7881C2 19.5763 2 17.6258 2 13.725V12.2039Z\" stroke=\"currentColor\"/>\n<path d=\"M12 15L12 18\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/letter.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/letter.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-letter-linear\"><path d=\"M2 12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C22 6.34315 22 8.22876 22 12C22 15.7712 22 17.6569 20.8284 18.8284C19.6569 20 17.7712 20 14 20H10C6.22876 20 4.34315 20 3.17157 18.8284C2 17.6569 2 15.7712 2 12Z\" stroke=\"currentColor\"/>\n<path d=\"M6 8L8.1589 9.79908C9.99553 11.3296 10.9139 12.0949 12 12.0949C13.0861 12.0949 14.0045 11.3296 15.8411 9.79908L18 8\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/magnifier.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/magnifier.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-magnifier-linear\"><circle cx=\"11.5\" cy=\"11.5\" r=\"9.5\" stroke=\"currentColor\"/>\n<path d=\"M18.5 18.5L22 22\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/menu-dots.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/menu-dots.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-menu-dots-linear\"><circle cx=\"5\" cy=\"12\" r=\"2\" stroke=\"currentColor\"/>\n<circle cx=\"12\" cy=\"12\" r=\"2\" stroke=\"currentColor\"/>\n<circle cx=\"19\" cy=\"12\" r=\"2\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/pie-chart-2.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/pie-chart-2.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-pie-chart-2-linear\"><path d=\"M6.22209 4.60105C6.66665 4.304 7.13344 4.04636 7.6171 3.82976C8.98898 3.21539 9.67491 2.9082 10.5875 3.4994C11.5 4.09061 11.5 5.06041 11.5 7.00001V8.50001C11.5 10.3856 11.5 11.3284 12.0858 11.9142C12.6716 12.5 13.6144 12.5 15.5 12.5H17C18.9396 12.5 19.9094 12.5 20.5006 13.4125C21.0918 14.3251 20.7846 15.011 20.1702 16.3829C19.9536 16.8666 19.696 17.3334 19.399 17.7779C18.3551 19.3402 16.8714 20.5578 15.1355 21.2769C13.3996 21.9959 11.4895 22.184 9.64665 21.8175C7.80383 21.4509 6.11109 20.5461 4.78249 19.2175C3.45389 17.8889 2.5491 16.1962 2.18254 14.3534C1.81598 12.5105 2.00412 10.6004 2.72315 8.86451C3.44218 7.12861 4.65982 5.64492 6.22209 4.60105Z\" stroke=\"currentColor\"/>\n<path d=\"M21.446 7.06901C20.6342 5.00831 18.9917 3.36579 16.931 2.55398C15.3895 1.94669 14 3.34316 14 5.00002V9.00002C14 9.5523 14.4477 10 15 10H19C20.6569 10 22.0533 8.61055 21.446 7.06901Z\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/printer.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/printer.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-printer-linear\"><path d=\"M6 17.9827C4.44655 17.9359 3.51998 17.7626 2.87868 17.1213C2 16.2426 2 14.8284 2 12C2 9.17157 2 7.75736 2.87868 6.87868C3.75736 6 5.17157 6 8 6H16C18.8284 6 20.2426 6 21.1213 6.87868C22 7.75736 22 9.17157 22 12C22 14.8284 22 16.2426 21.1213 17.1213C20.48 17.7626 19.5535 17.9359 18 17.9827\" stroke=\"currentColor\"/>\n<path d=\"M9 10H6\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M19 14L5 14\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M17.9827 6C17.9359 4.44655 17.7626 3.51998 17.1213 2.87868C16.2426 2 14.8284 2 12 2C9.17157 2 7.75736 2 6.87868 2.87868C6.23738 3.51998 6.06413 4.44655 6.01732 6M18 14V16C18 18.8284 18 20.2426 17.1213 21.1213C16.2426 22 14.8284 22 12 22C9.17157 22 7.75736 22 6.87868 21.1213C6 20.2426 6 18.8284 6 16V14\" stroke=\"currentColor\"/>\n<path d=\"M15 16.5H9\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M13 19H9\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M17 10H17.0001\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/refresh.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/refresh.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-refresh-linear\"><path d=\"M3.67981 13L3.67981 11.3333C3.67981 6.73096 7.4402 3 12.0789 3C15.1178 3 17.7799 4.60136 19.2545 7M2 11.3333L3.67981 13L5.35962 11.3333\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M20.3139 11V12.6667C20.3139 17.269 16.5391 21 11.8827 21C8.83213 21 6.15995 19.3986 4.67969 17M22.0001 12.6667L20.3139 11L18.6277 12.6667\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/settings.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/settings.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-settings-linear\"><circle cx=\"12\" cy=\"12\" r=\"3\" stroke=\"currentColor\"/>\n<path d=\"M13.7654 2.15224C13.3978 2 12.9319 2 12 2C11.0681 2 10.6022 2 10.2346 2.15224C9.74457 2.35523 9.35522 2.74458 9.15223 3.23463C9.05957 3.45834 9.0233 3.7185 9.00911 4.09799C8.98826 4.65568 8.70226 5.17189 8.21894 5.45093C7.73564 5.72996 7.14559 5.71954 6.65219 5.45876C6.31645 5.2813 6.07301 5.18262 5.83294 5.15102C5.30704 5.08178 4.77518 5.22429 4.35436 5.5472C4.03874 5.78938 3.80577 6.1929 3.33983 6.99993C2.87389 7.80697 2.64092 8.21048 2.58899 8.60491C2.51976 9.1308 2.66227 9.66266 2.98518 10.0835C3.13256 10.2756 3.3397 10.437 3.66119 10.639C4.1338 10.936 4.43789 11.4419 4.43786 12C4.43783 12.5581 4.13375 13.0639 3.66118 13.3608C3.33965 13.5629 3.13248 13.7244 2.98508 13.9165C2.66217 14.3373 2.51966 14.8691 2.5889 15.395C2.64082 15.7894 2.87379 16.193 3.33973 17C3.80568 17.807 4.03865 18.2106 4.35426 18.4527C4.77508 18.7756 5.30694 18.9181 5.83284 18.8489C6.07289 18.8173 6.31632 18.7186 6.65204 18.5412C7.14547 18.2804 7.73556 18.27 8.2189 18.549C8.70224 18.8281 8.98826 19.3443 9.00911 19.9021C9.02331 20.2815 9.05957 20.5417 9.15223 20.7654C9.35522 21.2554 9.74457 21.6448 10.2346 21.8478C10.6022 22 11.0681 22 12 22C12.9319 22 13.3978 22 13.7654 21.8478C14.2554 21.6448 14.6448 21.2554 14.8477 20.7654C14.9404 20.5417 14.9767 20.2815 14.9909 19.902C15.0117 19.3443 15.2977 18.8281 15.781 18.549C16.2643 18.2699 16.8544 18.2804 17.3479 18.5412C17.6836 18.7186 17.927 18.8172 18.167 18.8488C18.6929 18.9181 19.2248 18.7756 19.6456 18.4527C19.9612 18.2105 20.1942 17.807 20.6601 16.9999C21.1261 16.1929 21.3591 15.7894 21.411 15.395C21.4802 14.8691 21.3377 14.3372 21.0148 13.9164C20.8674 13.7243 20.6602 13.5628 20.3387 13.3608C19.8662 13.0639 19.5621 12.558 19.5621 11.9999C19.5621 11.4418 19.8662 10.9361 20.3387 10.6392C20.6603 10.4371 20.8675 10.2757 21.0149 10.0835C21.3378 9.66273 21.4803 9.13087 21.4111 8.60497C21.3592 8.21055 21.1262 7.80703 20.6602 7C20.1943 6.19297 19.9613 5.78945 19.6457 5.54727C19.2249 5.22436 18.693 5.08185 18.1671 5.15109C17.9271 5.18269 17.6837 5.28136 17.3479 5.4588C16.8545 5.71959 16.2644 5.73002 15.7811 5.45096C15.2977 5.17191 15.0117 4.65566 14.9909 4.09794C14.9767 3.71848 14.9404 3.45833 14.8477 3.23463C14.6448 2.74458 14.2554 2.35523 13.7654 2.15224Z\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/sun.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/sun.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-sun-linear\"><circle cx=\"12\" cy=\"12\" r=\"6\" stroke=\"currentColor\"/>\n<path d=\"M12 2V3\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M12 21V22\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M22 12L21 12\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M3 12L2 12\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M19.0708 4.92969L18.678 5.32252\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M5.32178 18.6777L4.92894 19.0706\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M19.0708 19.0703L18.678 18.6775\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M5.32178 5.32227L4.92894 4.92943\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/transfer-horizontal.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/transfer-horizontal.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-transfer-horizontal-linear\"><path d=\"M20 10L4 10L9.5 4\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M4 14L20 14L14.5 20\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/trash-bin-2.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/trash-bin-2.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-trash-bin-2-linear\"><path d=\"M20.5001 6H3.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M18.8332 8.5L18.3732 15.3991C18.1962 18.054 18.1077 19.3815 17.2427 20.1907C16.3777 21 15.0473 21 12.3865 21H11.6132C8.95235 21 7.62195 21 6.75694 20.1907C5.89194 19.3815 5.80344 18.054 5.62644 15.3991L5.1665 8.5\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M6.5 6C6.55588 6 6.58382 6 6.60915 5.99936C7.43259 5.97849 8.15902 5.45491 8.43922 4.68032C8.44784 4.65649 8.45667 4.62999 8.47434 4.57697L8.57143 4.28571C8.65431 4.03708 8.69575 3.91276 8.75071 3.8072C8.97001 3.38607 9.37574 3.09364 9.84461 3.01877C9.96213 3 10.0932 3 10.3553 3H13.6447C13.9068 3 14.0379 3 14.1554 3.01877C14.6243 3.09364 15.03 3.38607 15.2493 3.8072C15.3043 3.91276 15.3457 4.03708 15.4286 4.28571L15.5257 4.57697C15.5433 4.62992 15.5522 4.65651 15.5608 4.68032C15.841 5.45491 16.5674 5.97849 17.3909 5.99936C17.4162 6 17.4441 6 17.5 6\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/user-plus.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/user-plus.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-user-plus-linear\"><circle cx=\"12\" cy=\"6\" r=\"4\" stroke=\"currentColor\"/>\n<path d=\"M15 13.3271C14.0736 13.1162 13.0609 13 12 13C7.58172 13 4 15.0147 4 17.5C4 19.9853 4 22 12 22C17.6874 22 19.3315 20.9817 19.8068 19.5\" stroke=\"currentColor\"/>\n<circle cx=\"18\" cy=\"16\" r=\"4\" stroke=\"currentColor\"/>\n<path d=\"M18 14.6667V17.3333\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M16.6665 16L19.3332 16\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/user-rounded.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/user-rounded.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-user-rounded-linear\"><circle cx=\"12\" cy=\"6\" r=\"4\" stroke=\"currentColor\"/>\n<ellipse cx=\"12\" cy=\"17\" rx=\"7\" ry=\"4\" stroke=\"currentColor\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/users-group-rounded.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/users-group-rounded.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-users-group-rounded-linear\"><circle cx=\"9\" cy=\"6\" r=\"4\" stroke=\"currentColor\"/>\n<path d=\"M15 9C16.6569 9 18 7.65685 18 6C18 4.34315 16.6569 3 15 3\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<ellipse cx=\"9\" cy=\"17\" rx=\"7\" ry=\"4\" stroke=\"currentColor\"/>\n<path d=\"M18 14C19.7542 14.3847 21 15.3589 21 16.5C21 17.5293 19.9863 18.4229 18.5 18.8704\" stroke=\"currentColor\" stroke-linecap=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/wallet.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/wallet.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-wallet-linear\"><path d=\"M6 8H10\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M20.8333 9H18.2308C16.4465 9 15 10.3431 15 12C15 13.6569 16.4465 15 18.2308 15H20.8333C20.9167 15 20.9583 15 20.9935 14.9979C21.5328 14.965 21.9623 14.5662 21.9977 14.0654C22 14.0327 22 13.994 22 13.9167V10.0833C22 10.006 22 9.96726 21.9977 9.9346C21.9623 9.43384 21.5328 9.03496 20.9935 9.00214C20.9583 9 20.9167 9 20.8333 9Z\" stroke=\"currentColor\"/>\n<path d=\"M20.965 9C20.8873 7.1277 20.6366 5.97975 19.8284 5.17157C18.6569 4 16.7712 4 13 4L10 4C6.22876 4 4.34315 4 3.17157 5.17157C2 6.34315 2 8.22876 2 12C2 15.7712 2 17.6569 3.17157 18.8284C4.34315 20 6.22876 20 10 20H13C16.7712 20 18.6569 20 19.8284 18.8284C20.6366 18.0203 20.8873 16.8723 20.965 15\" stroke=\"currentColor\"/>\n<path d=\"M17.9912 12H18.0002\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/wallet-money.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/wallet-money.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-wallet-money-linear\"><path d=\"M6 10H10\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n<path d=\"M20.8333 11H18.2308C16.4465 11 15 12.3431 15 14C15 15.6569 16.4465 17 18.2308 17H20.8333C20.9167 17 20.9583 17 20.9935 16.9979C21.5328 16.965 21.9623 16.5662 21.9977 16.0654C22 16.0327 22 15.994 22 15.9167V12.0833C22 12.006 22 11.9673 21.9977 11.9346C21.9623 11.4338 21.5328 11.035 20.9935 11.0021C20.9583 11 20.9167 11 20.8333 11Z\" stroke=\"currentColor\"/>\n<path d=\"M20.965 11C20.8873 9.1277 20.6366 7.97975 19.8284 7.17157C18.6569 6 16.7712 6 13 6H10C6.22876 6 4.34315 6 3.17157 7.17157C2 8.34315 2 10.2288 2 14C2 17.7712 2 19.6569 3.17157 20.8284C4.34315 22 6.22876 22 10 22H13C16.7712 22 18.6569 22 19.8284 20.8284C20.6366 20.0203 20.8873 18.8723 20.965 17\" stroke=\"currentColor\"/>\n<path d=\"M6 6L9.73549 3.52313C10.7874 2.82562 12.2126 2.82562 13.2645 3.52313L17 6\" stroke=\"currentColor\" stroke-linecap=\"round\"/>\n<path d=\"M17.9912 14H18.0002\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>"
    },
    {
      "path": "site/public/icons/solar-linear/widget-4.svg",
      "type": "registry:file",
      "target": "public/icons/solar-linear/widget-4.svg",
      "content": "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke-width=\"1.5\" class=\"solar solar-widget-4-linear\"><path d=\"M2.5 6.5C2.5 4.61438 2.5 3.67157 3.08579 3.08579C3.67157 2.5 4.61438 2.5 6.5 2.5C8.38562 2.5 9.32843 2.5 9.91421 3.08579C10.5 3.67157 10.5 4.61438 10.5 6.5V17.5C10.5 19.3856 10.5 20.3284 9.91421 20.9142C9.32843 21.5 8.38562 21.5 6.5 21.5C4.61438 21.5 3.67157 21.5 3.08579 20.9142C2.5 20.3284 2.5 19.3856 2.5 17.5V6.5Z\" stroke=\"currentColor\"/>\n<path d=\"M13.5 15.5C13.5 13.6144 13.5 12.6716 14.0858 12.0858C14.6716 11.5 15.6144 11.5 17.5 11.5C19.3856 11.5 20.3284 11.5 20.9142 12.0858C21.5 12.6716 21.5 13.6144 21.5 15.5V17.5C21.5 19.3856 21.5 20.3284 20.9142 20.9142C20.3284 21.5 19.3856 21.5 17.5 21.5C15.6144 21.5 14.6716 21.5 14.0858 20.9142C13.5 20.3284 13.5 19.3856 13.5 17.5V15.5Z\" stroke=\"currentColor\"/>\n<path d=\"M13.5 5.5C13.5 4.56812 13.5 4.10218 13.6522 3.73463C13.8552 3.24458 14.2446 2.85523 14.7346 2.65224C15.1022 2.5 15.5681 2.5 16.5 2.5H18.5C19.4319 2.5 19.8978 2.5 20.2654 2.65224C20.7554 2.85523 21.1448 3.24458 21.3478 3.73463C21.5 4.10218 21.5 4.56812 21.5 5.5C21.5 6.43188 21.5 6.89782 21.3478 7.26537C21.1448 7.75542 20.7554 8.14477 20.2654 8.34776C19.8978 8.5 19.4319 8.5 18.5 8.5H16.5C15.5681 8.5 15.1022 8.5 14.7346 8.34776C14.2446 8.14477 13.8552 7.75542 13.6522 7.26537C13.5 6.89782 13.5 6.43188 13.5 5.5Z\" stroke=\"currentColor\"/></svg>"
    }
  ],
  "docs": "/docs/themes#finance-dashboard",
  "meta": {
    "status": "stable",
    "copyright": "Coordiation",
    "framework": "Next.js App Router",
    "style": "fintech operations dashboard",
    "palette": "midnight, white and cobalt",
    "namespace": "coordiation-finance-dashboard",
    "classPrefix": "fd-",
    "preview": "/themes/finance-dashboard/preview",
    "cover": null,
    "assetStrategy": "css-only",
    "components": [
      "Avatar",
      "Badge",
      "Button",
      "Card",
      "CardHeader",
      "IconButton",
      "Progress",
      "SearchField",
      "SelectControl",
      "Table"
    ],
    "sections": [
      "sidebar",
      "topbar",
      "page header",
      "financial summary",
      "revenue report",
      "cash health",
      "currency snapshot",
      "fund allocation",
      "transaction history",
      "collaborator payouts",
      "footer"
    ],
    "assets": [],
    "frameworkName": "Coordiation CSS",
    "sourceOwnership": "open-code"
  }
}
