Switch from system font stack to DM Sans (Google Fonts, variable weight) and reduce base font-size to 14px for a more compact, professional feel. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
771 B
HTML
17 lines
771 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap" rel="stylesheet" />
|
|
<link rel="icon" type="image/svg+xml" href="/LUX_STUDIO_LOGO.svg" />
|
|
<link rel="icon" type="image/png" href="/LUX_STUDIO_LOGO.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Lux Studio - AI Cinematography</title>
|
|
</head>
|
|
<body class="bg-slate-950">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|