auditforge / frontend /index.html
Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame contribute delete
758 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AuditForge</title>
<!-- iconos de font awesome/material -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
</head>
<body class="bg-gray-800">
<div id="root" class="h-full w-full text-white"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>