18 lines
641 B
HTML
18 lines
641 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/icon-64.png" />
|
|
<link rel="icon" type="image/png" sizes="64x64" href="/icon-64.png" />
|
|
<link rel="icon" type="image/png" sizes="512x512" href="/icon-512.png" />
|
|
<link rel="apple-touch-icon" href="/icon-512.png" />
|
|
<meta name="theme-color" content="#11192a" />
|
|
<title>Contracts Companion</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|