maintenance: Clean up codebase and improve formatting
• Remove placeholder comments and unused code • Standardize inline styles and formatting • Update component structure and organization
This commit is contained in:
19
index.html
19
index.html
@@ -4,10 +4,27 @@
|
||||
<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>Vite + React</title>
|
||||
<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>
|
||||
|
Reference in New Issue
Block a user