Files
nachtigall.dev/index.html
vikingowl 78f72506b5 chore: implement SEO composables, structured data, and sitemap with robots config
- Added `usePageSeo` composable for dynamic page-level SEO.
- Configured default head manager using `@vueuse/head`.
- Introduced sitemap.xml and robots.txt for search engine indexing.
- Updated `head` plugin and integrated SEO composable into pages.
- Added localized SEO data for English and German translations.
- Updated `yarn.lock` and dependencies to include `@vueuse/head`.
2025-10-18 18:43:44 +02:00

33 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="/favicon.svg" rel="icon" type="image/svg+xml" />
<link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
<link href="/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
<link href="/apple-touch-icon.png" rel="apple-touch-icon" />
<link href="/site.webmanifest" rel="manifest" />
<link color="#0b1220" href="/safari-pinned-tab.svg" rel="mask-icon" />
<meta content="#0b1220" name="theme-color" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta
content="Christian Nachtigall is a front-end focused full-stack engineer building accessible Vue and Vuetify interfaces, Rust-backed APIs, and automation that keeps teams shipping fast."
name="description"
/>
<title>Christian Nachtigall · Front-end Engineer</title>
<link
crossorigin="anonymous"
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css"
integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY="
rel="stylesheet"
/>
</head>
<body>
<div id="app"></div>
<script src="/src/main.ts" type="module"></script>
</body>
</html>