2026-02-16 13:32:04 -06:00
|
|
|
<!DOCTYPE html>
|
Overhaul UI with shadcn components and new pages
Add shadcn/ui components (badge, button, card, input, select,
separator). Add company context provider. New pages: Activity,
Approvals, Companies, Costs, Org chart. Restyle existing pages
(Dashboard, Agents, Issues, Goals, Projects) with shadcn components
and dark theme. Update layout, sidebar navigation, and routing.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:07:32 -06:00
|
|
|
<html lang="en" class="dark">
|
2026-02-16 13:32:04 -06:00
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
2026-02-23 19:44:02 -06:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
|
2026-02-18 13:02:23 -06:00
|
|
|
<meta name="theme-color" content="#18181b" />
|
2026-02-16 13:32:04 -06:00
|
|
|
<title>Paperclip</title>
|
2026-02-18 13:02:23 -06:00
|
|
|
<link rel="icon" href="/favicon.ico" sizes="48x48" />
|
|
|
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
2026-02-16 13:32:04 -06:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="root"></div>
|
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|