30 lines
821 B
HTML
30 lines
821 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='0.9em' font-size='90'>🧩</text></svg>" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>UUIDv4 Generator</title>
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #f3f4f6;
|
|
box-sizing: border-box;
|
|
}
|
|
#root {
|
|
height: 100%;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|