mirror of
https://github.com/delibae/claude-prism.git
synced 2026-08-28 05:14:59 +00:00
55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
<!doctype html>
|
|
<html lang="en" class="h-full">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
<title>ClaudePrism | LaTeX Writing Workspace</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=Geist:wght@400;500;600;700&family=Geist+Mono:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
#loading-screen {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #fafafa;
|
|
z-index: 9999;
|
|
font-family: 'Geist', system-ui, sans-serif;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
#loading-screen { background: #0a0a0a; color: #fafafa; }
|
|
#loading-spinner { border-color: #333; border-top-color: #fafafa; }
|
|
}
|
|
#loading-spinner {
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 3px solid #e5e5e5;
|
|
border-top-color: #171717;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
margin-bottom: 16px;
|
|
}
|
|
#loading-screen p {
|
|
font-size: 14px;
|
|
color: #737373;
|
|
}
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
</style>
|
|
</head>
|
|
<body class="h-full antialiased">
|
|
<div id="loading-screen">
|
|
<div id="loading-spinner"></div>
|
|
<p>Loading ClaudePrism...</p>
|
|
</div>
|
|
<div id="root" class="h-full"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|