28 lines
966 B
HTML
28 lines
966 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
||
|
|
<!-- TODO: Set the document title to the name of your application -->
|
||
|
|
<title>Eventify Command Center</title>
|
||
|
|
<meta name="description" content="Eventify Command Center Admin Panel" />
|
||
|
|
<meta name="author" content="Eventify" />
|
||
|
|
|
||
|
|
<meta property="og:title" content="Eventify Command Center" />
|
||
|
|
<meta property="og:description" content="Eventify Command Center Admin Panel" />
|
||
|
|
<meta property="og:type" content="website" />
|
||
|
|
<meta property="og:image" content="/og-image.png" />
|
||
|
|
|
||
|
|
<meta name="twitter:card" content="summary_large_image" />
|
||
|
|
<meta name="twitter:site" content="@Eventify" />
|
||
|
|
<meta name="twitter:image" content="/og-image.png" />
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="/src/main.tsx"></script>
|
||
|
|
</body>
|
||
|
|
|
||
|
|
</html>
|