2026-05-12 19:40:31 +09:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="ko">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2026-05-14 13:52:45 +09:00
|
|
|
<meta name="description" content="Ontology Construction Platform with Phase 5 GraphRAG and Phase 7 LLM" />
|
2026-05-20 18:43:08 +09:00
|
|
|
<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"
|
|
|
|
|
/>
|
2026-05-12 19:40:31 +09:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-05-14 13:52:45 +09:00
|
|
|
<div id="root"></div>
|
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
2026-05-12 19:40:31 +09:00
|
|
|
</body>
|
|
|
|
|
</html>
|