-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ReactJack.ts | Davey Knific</title>
<meta name="description" content="Play blackjack in your browser with React and TypeScript!">
<meta property="og:title" content="ReactJack.ts | Davey Knific" />
<meta property="og:description" content="Play blackjack in your browser with React and TypeScript!" />
<meta property="og:url" content="https://www.daveyknific.com/react-jack/index.html" />
<meta property="og:image" content="https://i.imgur.com/POXiFMj.png" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="canonical" href="https://www.daveyknific.com/react-jack/index.html" />
</head>
<body>
<nav>
<a href="https://www.daveyknific.com" class="home-link">
<div class='photo-holder'></div>
</a>
<a href="https://github.com/dknific/react-jack" target="_blank" class="github-link">View Source Code</a>
</nav>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>