-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created single page version of app and corresponding route. (#134)
I added just enough basic shadcn/tailwind to make it look acceptable.
- Loading branch information
Showing
4 changed files
with
97 additions
and
36 deletions.
There are no files selected for viewing
99 changes: 69 additions & 30 deletions
99
heat-stack/app/components/ui/heat/CaseSummaryComponents/HomeInformation.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { CurrentHeatingSystem } from '../../components/ui/heat/CaseSummaryComponents/CurrentHeatingSystem.tsx' | ||
import { EnergyUseHistory } from '../../components/ui/heat/CaseSummaryComponents/EnergyUseHistory.tsx' | ||
import { Graphs } from '../../components/ui/heat/CaseSummaryComponents/Graphs.tsx' | ||
import { HomeInformation } from '../../components/ui/heat/CaseSummaryComponents/HomeInformation.tsx' | ||
|
||
export default function Inputs() { | ||
return ( | ||
<div> | ||
{/* <div className="container items-center justify-between gap-4 md:h-24 md:flex-row"> */} | ||
<HomeInformation /> | ||
<CurrentHeatingSystem /> | ||
<EnergyUseHistory /> | ||
<h1 className="page-title">Heat Load Analysis</h1> | ||
<Graphs /> | ||
</div> | ||
) | ||
} |