Files
campfire-dashboard/index.html
dereklseitz e87a8153c9 maintenance: Clean up codebase and improve formatting
• Remove placeholder comments and unused code
• Standardize inline styles and formatting
• Update component structure and organization
2025-09-28 10:47:30 -05:00

31 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Campfire Logs Dashboard</title>
<!-- Preload critical resources -->
<link rel="preload" href="/src/assets/images/campfire_logs_square_logo_bg_match.png" as="image" fetchpriority="high" />
<link rel="preload" href="/src/assets/css/index.css" as="style" />
<link rel="preload" href="/src/main.jsx" as="script" />
<!-- Preconnect to external domains -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
</head>
<body>
<div id="root"></div>
<!-- Preload LCP image in HTML for early discovery -->
<img
src="/src/assets/images/campfire_logs_square_logo_bg_match.png"
alt="Campfire Logs Logo"
style="display: none;"
loading="eager"
fetchpriority="high"
/>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>