Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
egsch committed Nov 17, 2024
1 parent f61c5b9 commit 6a3b8a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Home() {
},
];
return (
<div className="flex flex-col items-center h-screen">
<div className="flex h-screen flex-col items-center">
<SearchBar />
<div className="my-5 flex flex-row">
<SmallButton text="Manage Buldings" />
Expand All @@ -46,12 +46,12 @@ export default function Home() {
<Building key={index} {...buildingData} />
))}
</div>
<div className="w-1/2 p-5 items-center h-full">
<div className="h-full w-1/2 items-center p-5">
<PieChart
title="Your Buildings"
series={[10, 41, 35]}
labels={['Large Offices', 'Small Offices', 'Commercial Buildings']}
className="flex-1 h-1/2 mb-6"
className="mb-6 h-1/2 flex-1"
/>
<LineGraph
title="Total Energy Usage (thous Btu)"
Expand Down

0 comments on commit 6a3b8a2

Please sign in to comment.