35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en" data-theme="light">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
|
|
<title>Fallback title</title>
|
|
|
|
<!-- SEO Meta Tags -->
|
|
<meta name="description" content="Brief description of the page" />
|
|
<meta name="keywords" content="keyword1, keyword2, keyword3" />
|
|
<meta name="author" content="Author Name" />
|
|
|
|
<!-- Social Media Meta Tags (Open Graph for Facebook, Twitter Card, etc.) -->
|
|
<meta property="og:title" content="Title for Social Media" />
|
|
<meta property="og:description" content="Description for Social Media" />
|
|
<meta property="og:image" content="URL to image for social media" />
|
|
<meta property="og:url" content="URL of the page" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" href="/cmms_servimain_logo.png" />
|
|
|
|
<!-- Additional Tags (like canonical, robots, etc.) -->
|
|
<link rel="canonical" href="https://www.example.com/page-url" />
|
|
<meta name="robots" content="index, follow" />
|
|
<link rel="manifest" href="/manifest.json">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="src/main.tsx"></script>
|
|
</body>
|
|
</html>
|