Files
LASTA_DEV01\lasta 651c47d698 1
2026-05-20 18:43:08 +09:00

47 lines
1.8 KiB
HTML

<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Ontology Construction Platform with Phase 5 GraphRAG and Phase 7 LLM" />
<meta name="theme-color" content="#0b1020" />
<title>Ontology Builder — AI-Powered Ontology Construction</title>
<!-- Avoid FOUC on dark mode: apply theme before stylesheets -->
<script>
(function () {
try {
var stored = localStorage.getItem("op.theme");
var prefersDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
var theme = stored === "light" || stored === "dark"
? stored
: prefersDark ? "dark" : "light";
if (theme === "dark") document.documentElement.classList.add("dark");
document.documentElement.dataset.theme = theme;
} catch (e) {}
})();
</script>
<!-- Fonts: Pretendard (KR/EN), Inter (display), JetBrains Mono (code) -->
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>