Files
lifeforge/docs/index.html
2026-06-25 08:54:16 +08:00

134 lines
4.0 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI0NFREQzRSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjIiIGQ9Im0xMS40MTQgMTBsLTcuMzgzIDcuNDE4YTIuMDkgMi4wOSAwIDAgMCAwIDIuOTY3YTIuMTEgMi4xMSAwIDAgMCAyLjk3NiAwTDE0LjQxNCAxM20zLjcwNyAyLjI5M2wyLjU4Ni0yLjU4NmExIDEgMCAwIDAgMC0xLjQxNGwtNy41ODYtNy41ODZhMSAxIDAgMCAwLTEuNDE0IDBMOS4xMjEgNi4yOTNhMSAxIDAgMCAwIDAgMS40MTRsNy41ODYgNy41ODZhMSAxIDAgMCAwIDEuNDE0IDAiLz48L3N2Zz4="
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="google-site-verification"
content="TZJ491IH2SJMCtqd0p5KA6kUpy_KxkvKEH79HnKJz4w"
/>
<!-- Primary Meta Tags -->
<title>LifeForge. Docs</title>
<meta name="title" content="LifeForge. Docs" />
<meta
name="description"
content="Comprehensive documentation for LifeForge - your all in one self-hosted productivity and life management tool."
/>
<meta
name="keywords"
content="lifeforge, documentation, productivity, life management, tools, self-hosted"
/>
<meta name="author" content="LifeForge Team" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.lifeforge.melvinchia.dev/" />
<meta property="og:title" content="LifeForge. Docs" />
<meta
property="og:description"
content="Comprehensive documentation for LifeForge - your all in one self-hosted productivity and life management tool."
/>
<meta
property="og:image"
content="https://docs.lifeforge.melvinchia.dev/og-image.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://docs.lifeforge.melvinchia.dev/"
/>
<meta property="twitter:title" content="LifeForge. Docs" />
<meta
property="twitter:description"
content="Comprehensive documentation for LifeForge - your all in one self-hosted productivity and life management tool."
/>
<meta
property="twitter:image"
content="https://docs.lifeforge.melvinchia.dev/og-image.png"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github-dark.min.css"
/>
<style>
body {
margin: 0;
}
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: black;
font-family: 'Inter', sans-serif;
z-index: 9999;
}
.loader {
width: 36px;
height: 36px;
border: 4px solid white;
border-bottom-color: transparent;
border-radius: 50%;
display: inline-block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.forging-text {
font-size: 1.125rem;
font-weight: 500;
color: white;
}
.dark .preloader {
background-color: var(--color-bg-950);
}
#root {
background-color: white;
color: black;
}
.dark #root {
background-color: var(--color-bg-950);
color: var(--color-bg-50);
}
</style>
</head>
<body>
<div class="preloader">
<span class="loader"></span>
<p class="forging-text">Forging things together...</p>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>