first commit! 🎉

This commit is contained in:
ari melody 2025-09-23 14:25:19 +01:00
commit c38c13e54a
Signed by: ari
GPG key ID: CF99829C92678188
5 changed files with 451 additions and 0 deletions

28
index.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="app">
<div id="title">
<span>schedule designer <span id="version">v0</span></span>
<span>made with ♥ by ari melody</span>
</div>
<div id="schedule">
</div>
<div id="actions">
<button type="submit" id="import">Import</button>
<button type="submit" id="save">Save Schedule</button>
<button type="submit" id="clipboard" disabled>Copy to Clipboard</button>
<button type="submit" id="save-image" disabled>Save Image</button>
<button type="submit" id="export">Export</button>
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>