feat: add title and meta description, and relocate SvelteKit head tags to the top of the head.

This commit is contained in:
Ben
2026-03-09 13:37:27 -07:00
parent b44e9e5702
commit 0d099e34cd

View File

@@ -2,7 +2,11 @@
<html lang="en" data-theme="dark" data-palette="classic">
<head>
<meta charset="utf-8" />
<title>HowDoYouConvert.com — Free Unit Conversion Calculators</title>
<meta name="description" content="Convert between hundreds of units instantly. Free online calculators for unit conversion." />
%sveltekit.head%
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="preload"
href="/fonts/inter/Inter-Regular.woff2"
@@ -54,8 +58,9 @@
}
})();
</script>
%sveltekit.head%
<!-- SvelteKit head tags moved to top of <head> -->
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>