21 lines
886 B
HTML
21 lines
886 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Clawdbot Control</title>
|
|
<meta name="color-scheme" content="dark light" />
|
|
<meta name="theme-color" content="#1A1816" media="(prefers-color-scheme: dark)" />
|
|
<meta name="theme-color" content="#FAFAF9" media="(prefers-color-scheme: light)" />
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<!-- Poppins Font -->
|
|
<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=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<clawdbot-app></clawdbot-app>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|