Files
pdf/frontend/index.html
T
2026-08-06 14:58:44 +05:30

17 lines
785 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>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</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>