21 lines
550 B
HTML
21 lines
550 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dashboard — Roject</title>
|
|
<link rel="stylesheet" href="/components/app-nav/app-nav.css">
|
|
</head>
|
|
<body>
|
|
<app-nav></app-nav>
|
|
<main>
|
|
<h1>Dashboard</h1>
|
|
<nav class="dashboard-links">
|
|
<a href="/groups.html">Manage Groups</a>
|
|
<a href="/projects.html">Manage Projects</a>
|
|
</nav>
|
|
</main>
|
|
<script type="module" src="/components/app-nav/app-nav.js"></script>
|
|
</body>
|
|
</html>
|