This commit is contained in:
LASTA_DEV01\lasta
2026-05-20 18:43:08 +09:00
parent 33584dd631
commit 651c47d698
30 changed files with 6222 additions and 793 deletions

View File

@@ -4,7 +4,40 @@
<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" />
<title>Ontology Builder - AI-Powered Ontology Construction</title>
<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>