llms.txt Content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<!-- iOS-specific meta tags for better modal handling -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- Preconnect to font servers for better performance -->
<link rel="preconnect" href="https://api.fontshare.com" crossorigin>
<link rel="preconnect" href="https://cdn.fontshare.com" crossorigin>
<!-- Load fonts with standard link tag to avoid CORS issues -->
<link rel="stylesheet" href="https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@700,800,900&display=swap">
<!-- Critical inline CSS for immediate rendering -->
<style>
/* Prevent FOUC with system font stack while custom font loads */
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #ffffff;
color: #111827;
}
/* Apply General Sans when loaded */
body.font-loaded {
font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
#root {
min-height: 100vh;
}
</style>
<!-- Font loading detection -->
<script>
// Add font-loaded class when General Sans is available
if (document.fonts && document.fonts.ready) {
document.fonts.ready.then(function() {
if (document.fonts.check('1em General Sans')) {
document.body.classList.add('font-loaded');
}
});
}
</script>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/favic