-
Notifications
You must be signed in to change notification settings - Fork 48
/
index.html
43 lines (43 loc) · 1.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8" />
<title>RunningMap</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no"
/>
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<link
href="https://cdn.materialdesignicons.com/5.0.45/css/materialdesignicons.min.css"
rel="stylesheet"
/>
<link href="./css/admin-app.css" rel="stylesheet" />
</head>
<body class="bg-gray-200 h-screen">
<div class="flex justify-center items-center app-container">
<div class="text-center">
<img src="./images/main_logo.png" class="main-logo mx-auto" />
<p class="mt-2 text-gray-700">
RunningMap Admin 페이지입니다. <br />
제공되는 템플릿을 활용해 프로젝트를 완성해 보세요!
</p>
<ul class="text-blue-700">
<li class="inline-block p-1">
<a href="admin-station.html" class="underline">역 관리</a>
</li>
<li class="inline-block p-1">
<a href="#" class="underline">노선 관리</a>
</li>
<li class="inline-block p-1">
<a href="#" class="underline">구간 관리</a>
</li>
</ul>
</div>
</div>
<script type="module" src="./js/AdminApp.js"></script>
</body>
</html>