Files
drosterizer/index.html
luisdralves 0a08b468e0
All checks were successful
Build and Deploy / build-deploy (push) Successful in 28s
Fix OG image
2026-02-11 02:28:27 +00:00

21 lines
954 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Drosterizer</title>
<meta name="description" content="Create recursive Droste effects in your browser. Draw a boundary curve, adjust parameters, and generate infinite self-containing images. All processing done locally, no uploads." />
<meta property="og:type" content="website" />
<meta property="og:title" content="Drosterizer" />
<meta property="og:description" content="Create recursive Droste effects in your browser. Draw a boundary curve and generate infinite self-containing images. All processing done locally, no uploads." />
<meta property="og:image" content="/og-image.jpg" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>