- Rename channels.tsx to clients.tsx - Remove standalone skills.tsx and tools.tsx pages - Add agent/ directory for agent-related pages - Update layout and navigation structure - Add tabs component to ui package - Update fonts and global styles Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
933 B
HTML
23 lines
933 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Multica</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap" rel="stylesheet" />
|
|
<style>
|
|
:root {
|
|
/* Use system fonts for proper CJK punctuation support */
|
|
--font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
--font-geist-mono: "Geist Mono", ui-monospace, monospace;
|
|
--font-brand: "Playfair Display", serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="./src/main.tsx"></script>
|
|
</body>
|
|
</html>
|