Skip to content

Commit 0e641fc

Browse files
committed
feat: 404page
1 parent 3f8813c commit 0e641fc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

404.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html lang="ko">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>상품 쇼핑몰</title>
7+
<script src="https://cdn.tailwindcss.com"></script>
8+
<link rel="stylesheet" href="/src/styles.css">
9+
<script>
10+
tailwind.config = {
11+
theme: {
12+
extend: {
13+
colors: {
14+
primary: '#3b82f6',
15+
secondary: '#6b7280'
16+
}
17+
}
18+
}
19+
}
20+
</script>
21+
</head>
22+
<body class="bg-gray-50">
23+
<div id="root"></div>
24+
<script type="module" src="/src/main.js"></script>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)