Files
WebFTP/index.html
2026-01-21 14:25:55 +09:00

53 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebFTP by SIMP</title>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4444852135420953"
crossorigin="anonymous"></script>
<script src="https://cdn.tailwindcss.com"></script>
<style>
/* Custom scrollbar for a more native app feel - Light Theme */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
/* slate-100 */
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
/* slate-300 */
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
/* slate-400 */
}
</style>
<script type="importmap">
{
"imports": {
"react/": "https://esm.sh/react@^19.2.3/",
"react": "https://esm.sh/react@^19.2.3",
"@google/genai": "https://esm.sh/@google/genai@^1.37.0",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/"
}
}
</script>
</head>
<body
class="bg-slate-50 text-slate-800 overflow-hidden h-screen w-screen selection:bg-blue-200 selection:text-blue-900">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>