25 lines
807 B
HTML
25 lines
807 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Secret santa name drawing" />
|
|
<title>SecSan</title>
|
|
<link rel="icon" href="/favicon.png" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
href="/apple-touch-icon.png"
|
|
sizes="180x180"
|
|
/>
|
|
<meta name="theme-color" content="#ffffff" />
|
|
<link rel="preconnect" href="https://fonts.bunny.net" />
|
|
<link
|
|
href="https://fonts.bunny.net/css?family=ubuntu:500"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|