dashboardsIntermediate
Dashboard Holy-Grail
Holy-grail dashboard layout with header, sidebar, content, footer.
Claude prompt
Drop this into Claude Code, claude.ai, or your AI tool of choice to regenerate or remix this component from scratch.
Build a holy-grail dashboard layout with Tailwind: top header bar, left sidebar, main content area, optional footer. Header is sticky; sidebar collapses on mobile.
Code
html
<!--
Source: Mark Mead (HyperUI)
https://github.com/markmead/hyperui/blob/d09f638255d00e91e95f3cabea4f1d385356dd70/public/examples/application/grids/7.html
License: MIT
Surfaced via https://vibedex-ryan-staxs-projects-fb4e0931.vercel.app/components/hyperui-dash-grid-7
-->
<div class="bg-white text-gray-900 min-h-screen flex items-center justify-center">
<div class="p-6 w-full">
<div class="grid grid-cols-1 gap-4 lg:grid-cols-4 lg:gap-8">
<div class="h-32 rounded bg-gray-300 lg:col-span-2"></div>
<div class="h-32 rounded bg-gray-300"></div>
<div class="h-32 rounded bg-gray-300"></div>
</div>
</div>
</div>