Abmacode12's picture
Écran de gestion de projets (Première colonne) :
e9fb731 verified
<!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>