medium
+20 XP
FRONTEND
Dashboard Layout
Build a dashboard with sidebar, header, and main content area using Tailwind.
You're exploring as a guest. Create a free account to save progress and submit solutions.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="/styles.css" /> <script src="https://cdn.tailwindcss.com"></script> </head> <body> <div class="flex h-screen"> <aside class="w-64 bg-gray-800 text-white"><!-- Sidebar --></aside> <div class="flex-1 flex flex-col"><!-- Main --></div> </div> <script src="/index.js"></script> </body> </html>