made a pixelated interface with catppuccin styling.

This commit is contained in:
2026-01-15 20:40:48 +01:00
parent 880ccb7230
commit fe70f3892c
9 changed files with 1552 additions and 176 deletions

47
index.html Normal file
View File

@@ -0,0 +1,47 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevDen</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Welcome Screen (centered, shown initially) -->
<div class="welcome-screen" id="welcomeScreen">
<div class="logo">
<span class="logo-dev">Dev</span
><span class="logo-den">Den</span>
</div>
<div class="input-container">
<div class="input-box">
<input
type="text"
id="welcomeInput"
placeholder="Ask anything..."
autocomplete="off"
autofocus
/>
</div>
<div class="hint">Press <kbd>Enter</kbd> to send</div>
</div>
</div>
<!-- Chat Screen (shown after first message) -->
<div class="chat-screen hidden" id="chatScreen">
<div class="chat-messages" id="chatMessages"></div>
<div class="input-container chat-input">
<div class="input-box">
<input
type="text"
id="chatInput"
placeholder="Ask anything..."
autocomplete="off"
/>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>