dev_arc_aws/src/App.tsx

77 lines
2.8 KiB
TypeScript
Raw Normal View History

2026-06-18 08:14:00 -04:00
import { useState } from 'react'
import Sidebar from './components/Sidebar'
import TopBar from './components/TopBar'
import StatusCards from './components/StatusCards'
import MiddleRow from './components/MiddleRow'
import BottomRow from './components/BottomRow'
function App() {
const [sidebarCollapsed, setSidebarCollapsed] = useState(false)
const sidebarWidth = sidebarCollapsed ? 64 : 200
2026-06-18 08:14:00 -04:00
return (
<div className="min-h-screen w-screen overflow-hidden bg-page">
<Sidebar
collapsed={sidebarCollapsed}
onToggle={() => setSidebarCollapsed(!sidebarCollapsed)}
/>
<main
className="h-screen overflow-hidden"
style={{ marginLeft: `${sidebarWidth}px`, width: `calc(100vw - ${sidebarWidth}px)` }}
>
<TopBar />
<section
className="flex w-full flex-col overflow-hidden"
style={{ height: 'calc(100vh - 56px)', scrollbarWidth: 'none', padding: '16px 24px 24px 24px', gap: '20px' }}
2026-06-18 08:14:00 -04:00
>
{/* Hero + KPI overlap — KPI bottom aligns with banner bottom */}
<div className="relative w-full shrink-0 overflow-hidden" style={{ height: '240px' }}>
<img
src="/archnest-hero-banner.png"
alt="ArchNest Banner"
className="absolute inset-0 h-full w-full"
style={{
objectFit: 'cover',
objectPosition: 'center 35%',
maskImage: 'linear-gradient(to bottom, black 0%, black 45%, transparent 95%)',
WebkitMaskImage: 'linear-gradient(to bottom, black 0%, black 45%, transparent 95%)',
}}
onError={(e) => {
const target = e.currentTarget
target.style.display = 'none'
target.parentElement!.classList.add('bg-card')
}}
/>
{/* Side vignette so the rectangular image blends into the page edges */}
<div
className="pointer-events-none absolute inset-0"
style={{
background:
'radial-gradient(ellipse 75% 100% at center, transparent 55%, var(--color-page) 100%)',
}}
/>
{/* KPI cards positioned so their bottom edge aligns with banner bottom */}
<div className="absolute bottom-0 left-0 right-0 z-10 px-4">
<StatusCards />
2026-06-18 08:14:00 -04:00
</div>
</div>
2026-06-18 08:14:00 -04:00
{/* Middle Row — stretches to fill available vertical space */}
<div className="min-h-0 flex-1">
2026-06-18 08:14:00 -04:00
<MiddleRow />
</div>
2026-06-18 08:14:00 -04:00
{/* Bottom Row — anchored to the bottom */}
<div className="shrink-0">
2026-06-18 08:14:00 -04:00
<BottomRow />
</div>
</section>
</main>
</div>
)
}
export default App