mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
🎨 Add metatags + support for light/dark mode
This commit is contained in:
+49
-2
@@ -2,10 +2,57 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta name="author" content="@pheralb_" />
|
||||
<meta name="description" content="A beautiful library with SVG logos" />
|
||||
|
||||
<!-- 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"
|
||||
/>
|
||||
|
||||
<!-- OG -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="svgl" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="A beautiful library with SVG logos"
|
||||
/>
|
||||
<meta property="og:url" content="https://svgl.app" />
|
||||
<meta
|
||||
property="og:image"
|
||||
content="https://svgl.app/images/screenshot.png"
|
||||
/>
|
||||
|
||||
<!-- 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_" />
|
||||
<meta
|
||||
name="twitter:image"
|
||||
content="https://svgl.app/images/screenshot.png"
|
||||
/>
|
||||
|
||||
<!-- Title -->
|
||||
<title>A beautiful library with SVG logos - Svgl</title>
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<body
|
||||
class="overscroll-none bg-neutral-100 font-sans tracking-tight text-black antialiased selection:bg-neutral-300 dark:bg-neutral-950 dark:text-white dark:selection:bg-neutral-700"
|
||||
data-sveltekit-preload-data="hover"
|
||||
>
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user