Files
pdf/frontend/index.html
T
2026-06-10 15:16:20 +05:30

14 lines
498 B
HTML

<!doctype html>
<html lang="en" class="h-full w-full">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PDF Editor</title>
</head>
<body class="h-full w-full overflow-hidden bg-[#f1f2f4] text-[#18212e] antialiased">
<div id="root" class="flex h-full w-full flex-col"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>