mirror of
https://github.com/ManInDark/ReactHolidays.git
synced 2026-01-20 22:24:28 +01:00
19 lines
818 B
HTML
19 lines
818 B
HTML
<!doctype html>
|
|
<html lang="en" prefix="og: https://ogp.me/ns/website#">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Holiday List</title>
|
|
<meta property="og:title" content="Holidays" />
|
|
<meta property="og:description" content="This website shows holidays of the current as well as other years." />
|
|
<meta property="og:url" content="https://holidays.own.manindark.me" />
|
|
<meta property="og:locale" content="de_DE" />
|
|
<meta property="og:site_name" content="Holidays" />
|
|
<meta property="og:type" content="website" />
|
|
</head>
|
|
<body class="dark:bg-gray-900 dark:text-white flex justify-center">
|
|
<div class="container " id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|