Files
Webklar/index.html
2026-05-25 14:49:50 +02:00

61 lines
2.3 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<script>
(function() {
try {
var theme = localStorage.getItem("theme");
var isDark =
theme === "dark" ||
((theme === "system" || !theme) &&
window.matchMedia("(prefers-color-scheme: dark)").matches);
if (isDark) {
document.documentElement.classList.add("dark");
} else {
document.documentElement.classList.remove("dark");
}
} catch (e) {
// localStorage blocked or unavailable — fall back to system preference
if (window.matchMedia("(prefers-color-scheme: dark)").matches) {
document.documentElement.classList.add("dark");
}
}
})();
</script>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WEBklar Webagentur für KMU | Digitalisierung &amp; Automatisierung</title>
<meta
name="description"
content="WEBklar digitalisiert KMU: Website, Prozesse und Systeme aus einer Hand. Kostenlose Potenzialanalyse Antwort innerhalb von 24 Stunden."
/>
<meta name="author" content="WEBklar" />
<link rel="canonical" href="https://webklar.com/" />
<meta property="og:title" content="WEBklar Webagentur für KMU" />
<meta
property="og:description"
content="Website, Automatisierung und vernetzte Prozesse für wachsende Unternehmen ohne Mehraufwand im Alltag."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://webklar.com/" />
<meta property="og:locale" content="de_DE" />
<meta property="og:image" content="https://webklar.com/og-image.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@WEBklar" />
<meta name="twitter:title" content="WEBklar Webagentur für KMU" />
<meta
name="twitter:description"
content="Digitalisierung für KMU: Website, Prozesse und Systeme. Kostenlose Potenzialanalyse."
/>
<meta name="twitter:image" content="https://webklar.com/og-image.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>