6fb6f68998
Replace Tyndale AI branding with Woolnoth identity including: - New brand colors: Deep Navy (#24293e), Soft Light Grey (#f4f4f6), Cool Slate Blue (#5c6f91), and Burnt Coral Red (#e94f37) - Updated typography from Montserrat/Outfit to Inter/Plus Jakarta Sans - Add reusable Logo component for consistent branding - Update favicon and page title - Apply new color scheme across all components (chat, landing, pages) - Update CSS variables and Tailwind config for brand consistency Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
766 B
HTML
19 lines
766 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Woolnoth - Algorithmic Trading Intelligence</title>
|
|
|
|
<!-- Google Fonts: Inter (body) + Plus Jakarta Sans (headings) -->
|
|
<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=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|