20 lines
721 B
HTML
20 lines
721 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/png" href="/img/logo.png">
|
|
<link rel="apple-touch-icon" href="/img/apple-touch-icon.png">
|
|
<meta name="theme-color" content="#18181b">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="BillTracker">
|
|
<title>Bill Tracker</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/client/main.jsx"></script>
|
|
</body>
|
|
</html>
|