17 lines
811 B
HTML
17 lines
811 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Tokki</title>
|
|
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
|
|
<link href="node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="./src/assets/styles/style.css">
|
|
<script type="module" src="node_modules/bootstrap/dist/js/bootstrap.min.js" defer></script>
|
|
</head>
|
|
<body class="d-flex flex-column h-100" style="min-height: 100vh;">
|
|
<div id="root" class="d-flex flex-column h-100" style="flex: 1 0 auto"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html> |