Files
dusk/tools/editor/index.html
T
2026-04-13 19:51:11 -05:00

39 lines
984 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dusk Editor Tools</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header class="site-header">
<span class="logo">Dusk <span>Editor</span></span>
<nav>
<a href="/" class="active">Home</a>
</nav>
</header>
<main class="page">
<section class="hero">
<h1>Editor Tools</h1>
<p>Asset creation and data authoring tools for the Dusk game engine.</p>
</section>
<section class="section">
<div class="section-label">Tools</div>
<div class="tool-grid" id="tool-grid">
<a class="tool-card" href="/texture/">
<div class="tool-name">Texture Creator</div>
<div class="tool-desc">Load PNG, JPG, or DTF files and export to the Dusk Texture Format (.dtf) or PNG.</div>
</a>
</div>
</section>
</main>
</body>
</html>