get rid of summary box

This commit is contained in:
Jun-te Kim 2025-12-08 13:31:39 +00:00
parent 05b89e3859
commit c87826fa7a

View file

@ -80,13 +80,6 @@ export default async function Page(props: {
return (
<>
<div className="flex justify-center">
<div className="grid grid-cols-11 w-full max-w-8xl">
<div className="col-span-3 flex-col">
<SummaryBox
scenarios={scenarios}
numProperties={properties.length}
/>
</div>
<div className="col-span-8 bg-white">
{properties.length === 0 ? (
<EmptyPropertyState />
@ -95,7 +88,6 @@ export default async function Page(props: {
)}
</div>
</div>
</div>
</>
);
}