43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
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>
|
|
<a class="tool-card" href="/texture-padder/">
|
|
<div class="tool-name">Texture Padder</div>
|
|
<div class="tool-desc">Pad texture dimensions to power-of-two or enforce minimum size requirements.</div>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|