made a pixelated interface with catppuccin styling.
This commit is contained in:
47
index.html
Normal file
47
index.html
Normal 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>
|
||||
Reference in New Issue
Block a user