Files
cms-automotivo/index.html
Cauê Faleiros bb903a0827
All checks were successful
Build and Deploy / build-and-push (push) Successful in 1m16s
fix: Add missing entry point script to index.html
2026-02-20 15:29:23 -03:00

43 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="pt-BR" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CAR Auto Center - Manutenção e Reparos</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
primary: 'var(--primary-color)',
secondary: '#1A1A1A',
dark: '#121212',
light: '#F4F4F5'
}
}
}
}
</script>
<style>
:root {
--primary-color: #FF6200;
}
body {
background-color: #09090b; /* Zinc 950 */
color: #f4f4f5;
}
.text-glow {
text-shadow: 0 0 20px rgba(var(--primary-color), 0.3);
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>