svgl/src/app.html

46 lines
1.8 KiB
HTML
Raw Normal View History

<!doctype html>
2023-03-14 21:08:22 +00:00
<html lang="en">
2023-03-15 11:29:15 +00:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
2023-03-15 13:54:42 +00:00
<meta name="robots" content="index, follow" />
2023-03-16 11:40:07 +00:00
<meta name="author" content="@pheralb_" />
2023-12-17 21:28:31 +00:00
<meta name="description" content="A beautiful library with SVG logos" />
2023-03-20 11:04:35 +00:00
2023-03-16 11:40:07 +00:00
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="%sveltekit.assets%/images/logo.svg" />
<link rel="icon" type="image/ico" href="%sveltekit.assets%/images/logo_ico.ico" />
2023-03-15 13:54:42 +00:00
<!-- OG -->
<meta property="og:type" content="website" />
<meta property="og:title" content="svgl" />
2023-03-20 11:04:35 +00:00
<meta property="og:description" content="A beautiful library with SVG logos" />
2023-03-15 13:54:42 +00:00
<meta property="og:url" content="https://svgl.vercel.app/" />
2023-03-20 11:12:56 +00:00
<meta property="og:image" content="https://svgl.vercel.app/images/screenshot.png" />
2023-03-15 13:54:42 +00:00
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Svgl" />
<meta name="twitter:description" content="A beautiful library with SVG logos" />
<meta name="twitter:creator" content="@pheralb_" />
2023-03-20 11:12:56 +00:00
<meta name="twitter:image" content="https://svgl.vercel.app/images/screenshot.png" />
2023-03-15 13:54:42 +00:00
2023-12-17 14:25:59 +00:00
<!-- Analytics -->
2023-12-17 21:28:31 +00:00
<script
async
src="https://umami.pheralb.dev/script.js"
data-website-id="50de464e-cf2c-4b76-b5e8-21c9259bc7be"
></script>
2023-12-17 14:25:59 +00:00
2023-03-15 13:54:42 +00:00
<!-- Title -->
<title>A beautiful library with SVG logos - Svgl</title>
2023-03-15 11:29:15 +00:00
%sveltekit.head%
</head>
<body
data-sveltekit-preload-data="hover"
2024-02-11 12:30:24 +03:30
class="min-h-screen bg-white font-sans text-mini dark:bg-dark dark:text-white antialiased selection:bg-neutral-200 scroll-smooth [text-rendering:optimizeLegibility;] dark:selection:bg-neutral-700"
>
2023-03-19 16:43:26 +00:00
<div>%sveltekit.body%</div>
2023-03-15 11:29:15 +00:00
</body>
2023-03-14 21:08:22 +00:00
</html>