mirror of
https://github.com/morten-olsen/catpic.delivery.git
synced 2026-02-08 01:46:26 +01:00
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>catpic.delivery</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="apple-mobile-web-app-title" content="catpic.delivery">
|
|
<link rel="shortcut icon" href="./public/cat.png" />
|
|
<link rel="apple-touch-icon" href="./public/cat.png" />
|
|
<meta name="theme-color" content="#fff" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Noto Sans', sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="src/index.tsx"></script>
|
|
</body>
|
|
</html>
|