File size: 1,140 Bytes
1ead186
112ced3
 
 
 
 
 
1ead186
112ced3
 
 
1ead186
 
d48db9e
 
 
 
 
 
 
 
 
 
 
 
1ead186
cf9ada6
1ead186
 
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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Colorless Wonder</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body>
    <div class="card">
        <h1>Developer Nexus</h1>
        <p>Powerful tools for developers, hackers, and security researchers.</p>
        <div class="mt-4 grid grid-cols-2 gap-4">
            <a href="chat.html" class="p-3 border rounded-lg hover:bg-gray-50 block">
                <div class="font-medium">AI Assistant</div>
                <div class="text-sm text-gray-600">Smart coding help and automation</div>
            </a>
            <a href="tools.html" class="p-3 border rounded-lg hover:bg-gray-50 block">
                <div class="font-medium">Toolkit</div>
                <div class="text-sm text-gray-600">Essential dev tools & connectors</div>
            </a>
        </div>
    </div>
    <script src="components/ai-chat.js"></script>
</body>
</html>