rojects/source/pages/index.html

26 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roject</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Barlow:ital,wght@1,900;1,700&display=swap">
<link rel="stylesheet" href="/components/confirm-dialog/confirm-dialog.css">
<link rel="stylesheet" href="/components/project-home/project-home.css">
<link rel="stylesheet" href="/components/project-list-default/project-list-default.css">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; background: #000; }
</style>
</head>
<body>
<confirm-dialog></confirm-dialog>
<project-home></project-home>
<script type="module" src="/components/confirm-dialog/confirm-dialog.js"></script>
<script type="module" src="/components/project-home/project-home.js"></script>
</body>
</html>