botui/ui/suite/browser/browser.html
Rodrigo Rodriguez (Pragmatismo) 2f53b65aeb feat(ui): implement Window Manager desktop shell based on BUILD V3 design
- Built custom vanilla JS Window Manager (window-manager.js)
- Replaced default.gbui with new desktop.html featuring Windows 95 spatial metaphor + Tailwind aesthetics
- Redesigned icons, taskbar, sidebar, and workspace to exactly match the target PDF layout
- Migrated Chat, Tasks, and Terminal into pure HTMX fragments to load seamlessly inside floating panels
- Added missing CSS rules to handle window rendering without CDNs
2026-02-24 19:02:48 -03:00

19 lines
No EOL
1.3 KiB
HTML

<div class="h-full flex flex-col bg-white overflow-hidden text-gray-800">
<div class="h-10 bg-gray-100 border-b border-gray-200 flex items-center px-4 space-x-2">
<button class="text-gray-400 hover:text-gray-600"><i class="fa-solid fa-arrow-left"></i></button>
<button class="text-gray-400 hover:text-gray-600"><i class="fa-solid fa-arrow-right"></i></button>
<button class="text-gray-400 hover:text-gray-600"><i class="fa-solid fa-rotate-right"></i></button>
<div class="flex-1 bg-white border border-gray-300 rounded px-3 py-1 flex items-center shadow-inner">
<i class="fa-solid fa-lock text-green-600 text-xs mr-2"></i>
<input type="text" class="flex-1 outline-none text-sm" value="https://generalbots.com" readonly>
</div>
<button class="text-gray-400 hover:text-gray-600"><i class="fa-solid fa-bars"></i></button>
</div>
<div class="flex-1 flex items-center justify-center bg-[#fafdfa]">
<div class="text-center text-gray-400">
<i class="fa-regular fa-compass text-5xl mb-4 text-brand-300"></i>
<h2 class="text-xl font-medium text-gray-600">Browser</h2>
<p class="mt-2 text-sm">Internet access starting soon...</p>
</div>
</div>
</div>