svgl/src/app.html

39 lines
1.6 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" />
2024-10-01 10:51:54 +01:00
<meta property="og:url" content="https://svgl.app" />
<meta property="og:image" content="https://svgl.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_" />
2024-10-01 10:51:54 +01:00
<meta name="twitter:image" content="https://svgl.app/images/screenshot.png" />
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-10-01 10:51:54 +01:00
class="min-h-screen scroll-smooth bg-white font-sans text-mini antialiased [text-rendering:optimizeLegibility;] selection:bg-neutral-200 dark:bg-dark dark:text-white 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>