index.html
1 <!doctype html> 2 <html lang="en" class="h-full"> 3 <head> 4 <!-- Title --> 5 <title>Osty</title> 6 7 <!-- Links --> 8 <link rel="icon" type="image/svg+xml" href="/osty.svg" /> 9 <link rel="canonical" href="" /> 10 11 <meta charset="UTF-8" /> 12 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 13 <meta name="description" content="" /> 14 <meta name="keywords" content="" /> 15 <meta name="theme-color" content="" /> 16 17 <!-- Opengraph --> 18 <meta property="og:type" content="website" /> 19 <meta property="og:title" content="" /> 20 <meta property="og:description" content="" /> 21 <meta property="og:image" content="" /> 22 <meta property="og:url" content="" /> 23 <meta property="og:site_name" content="" /> 24 25 <!-- Facebook Meta Tags --> 26 <meta property="og:url" content="" /> 27 <meta property="og:type" content="website" /> 28 <meta property="og:title" content="" /> 29 <meta property="og:description" content="" /> 30 <meta property="og:image" content="" /> 31 32 <!-- Twitter Meta Tags --> 33 <meta name="twitter:card" content="summary_large_image" /> 34 <meta property="twitter:domain" content="" /> 35 <meta property="twitter:url" content="" /> 36 <meta name="twitter:title" content="" /> 37 <meta name="twitter:description" content="" /> 38 <meta name="twitter:image" content="" /> 39 40 <!-- robots --> 41 <meta name="robots" content="index, follow" /> 42 <meta name="googlebot" content="index, follow" /> 43 44 <!-- Manifest --> 45 <link rel="manifest" href="/manifest.json" /> 46 </head> 47 <body class="h-full"> 48 <div id="root" class="h-full"></div> 49 <script type="module" src="/src/main.tsx"></script> 50 </body> 51 </html>