Create index.html
Browse files- index.html +24 -0
index.html
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8" />
|
| 5 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
+
<title>ClothCast — AI Outfit Forecaster</title>
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script type="importmap">
|
| 10 |
+
{
|
| 11 |
+
"imports": {
|
| 12 |
+
"react": "https://aistudiocdn.com/react@^19.2.0",
|
| 13 |
+
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
|
| 14 |
+
"react/": "https://aistudiocdn.com/react@^19.2.0/",
|
| 15 |
+
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.29.0"
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
</script>
|
| 19 |
+
</head>
|
| 20 |
+
<body class="bg-gray-100">
|
| 21 |
+
<div id="root"></div>
|
| 22 |
+
<script type="module" src="/index.tsx"></script>
|
| 23 |
+
</body>
|
| 24 |
+
</html>
|