feat: Initialize CAR Auto Center project with Vite and React

Sets up the foundational structure for the CAR Auto Center application using Vite and React. Includes project dependencies, basic HTML structure, TypeScript configuration, and initial README content. This commit establishes the project's build tool, core libraries, and essential configuration files.
This commit is contained in:
MMrp89
2026-02-19 16:22:10 -03:00
parent 638c7c3eef
commit c0bd6d7e3d
20 changed files with 3181 additions and 8 deletions

56
index.html Normal file
View File

@@ -0,0 +1,56 @@
<!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>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.4/",
"react": "https://esm.sh/react@^19.2.4",
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
"clsx": "https://esm.sh/clsx@^2.1.1",
"lucide-react": "https://esm.sh/lucide-react@^0.564.0",
"tailwind-merge": "https://esm.sh/tailwind-merge@^3.4.1",
"react-router-dom": "https://esm.sh/react-router-dom@^7.13.0",
"@supabase/supabase-js": "https://esm.sh/@supabase/supabase-js@^2.95.3"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>