Initial commit with React + Vite project

This commit is contained in:
2026-05-30 12:30:49 -03:00
commit 7d8626ea65
14 changed files with 2968 additions and 0 deletions

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A React and TypeScript website built with Vite."
/>
<title>Clouds Website</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>