deepsite / src /utils /consts.ts
enzostvs's picture
enzostvs HF Staff
responsive version OMG + DEEPSITE NAMING
a582fa0
raw
history blame
542 Bytes
export const defaultHTML = `<!DOCTYPE html>
<html>
<head>
<title>My app</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100dvh;
font-family: "Arial", sans-serif;
text-align: center;
}
</style>
</head>
<body>
<h1>
Start editing to see some magic happen!
</h1>
<script></script>
</body>
</html>
`;