37 lines
957 B
HTML
37 lines
957 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, user-scalable=1.0, minimum-scale=1.0, maximum-scale=1.0"
|
|
/>
|
|
<title>Prasi: App Builder</title>
|
|
<link
|
|
rel="preload stylesheet"
|
|
as="style"
|
|
crossorigin="anonymous"
|
|
href="../../../node_modules/@fontsource/jetbrains-mono/index.css"
|
|
/>
|
|
<link
|
|
rel="preload stylesheet"
|
|
as="style"
|
|
crossorigin="anonymous"
|
|
href="../../../node_modules/@fontsource/source-sans-3/index.css"
|
|
/>
|
|
<link rel="stylesheet" href="./index.css" />
|
|
|
|
<script>
|
|
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = {
|
|
isDisabled: true,
|
|
_renderers: {},
|
|
};
|
|
</script>
|
|
</head>
|
|
|
|
<body className="flex-col flex-1 w-full min-h-screen flex opacity-0">
|
|
<div id="root"></div>
|
|
<script type="module" src="./index.tsx"></script>
|
|
</body>
|
|
</html>
|