-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.81 KB
/
Copy pathindex.html
File metadata and controls
46 lines (46 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sparrow Hawk | CodeArt Generator</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="images/cropped_circle_image.png" type="image/png" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Code+Pro:wght@400;700&family=Dancing+Script&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<div class="header-content">
<img src="images/sparrow-hawk.png" alt="Sparrow profile" class="profile-pic">
<div class="hawk-quote">
<em>I don't create—I collaborate with entropy!</em>
</div>
</div>
</div>
</header>
<main id="chat" role="log" aria-live="polite" aria-relevant="additions"></main>
<div id="input-container">
<textarea
id="input"
placeholder="Ask me anything... if you dare!"
rows="1"
aria-label="Chat input"
spellcheck="true"
></textarea>
<button id="sendBtn" disabled aria-label="Send message">
<span class="btn-text">Unleash the Hawk</span>
</button>
</div>
<footer>
<p>
© 2026 All rights reserved. Crafted with caffeine & chaotic energy by
<strong><a href="https://reyrove.github.io/" target="_blank" rel="noopener noreferrer" class="footer-link">Reyrove</a></strong>,
powered by <strong><a href="https://console.groq.com/" target="_blank" rel="noopener noreferrer" class="footer-link">Groq Cloud</a></strong>
& <strong>openai/gpt-oss-20b</strong> (OpenAI's Open-Weight Model),
hosted on <strong><a href="https://vercel.com" target="_blank" rel="noopener noreferrer" class="footer-link">Vercel</a></strong>.
</p>
</footer>
<script src="script.js"></script>
</body>
</html>