File size: 1,351 Bytes
e9fb731 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeWhale - Dev Dashboard</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/sidebar.js"></script>
<script src="components/code-explanation.js"></script>
<script src="components/image-generator.js"></script>
</head>
<body class="bg-gray-100 font-sans">
<div class="flex h-screen overflow-hidden">
<!-- Sidebar Component -->
<custom-sidebar></custom-sidebar>
<!-- Code Explanation Column -->
<div class="flex-1 overflow-y-auto p-6 bg-white border-r border-gray-200">
<custom-code-explanation></custom-code-explanation>
</div>
<!-- Image Generator Column -->
<div class="flex-1 overflow-y-auto p-6 bg-gray-50">
<custom-image-generator></custom-image-generator>
</div>
</div>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |