Skip to content

Commit

Permalink
adjustments to landing page - hyperlinks added to paths and explanati…
Browse files Browse the repository at this point in the history
…ons for clarity (codeforboston#148)
  • Loading branch information
jkoren authored Feb 19, 2024
1 parent a0e314b commit a7095ac
Showing 1 changed file with 39 additions and 5 deletions.
44 changes: 39 additions & 5 deletions heat-stack/app/routes/_heat+/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import React from 'react'
import { Link } from 'react-router-dom'

export default function Home() {
return (
<div>
Expand All @@ -8,11 +11,42 @@ export default function Home() {
<br />
<ul>
Some paths with placeholder pages are:
<li>/heatloadanalysis - see an example heat load analysis</li>
<li>/cases - see a list of cases</li>
<li>/single - view as a single page app</li>
<li>/inputs1, /inputs2, /inputs3 - individual input screens </li>
<li>/epicstack - information about the Epic Stack</li>
<li>
<u>
<Link to="single">/single</Link>
</u>
- view all screens on a single page
</li>
<li>
<u>
<Link to="inputs1">/inputs1</Link>
</u>
- view input screen 1 - Home Information
</li>
<li>
<u>
<Link to="inputs2">/inputs2</Link>
</u>
- view input screen 2 - Existing Heating System
</li>
<li>
<u>
<Link to="inputs3">/inputs3</Link>
</u>
- view screen 3 - Summary of Heating Use
</li>
<li>
<u>
<Link to="heatloadanalysis">/heatloadanalysis</Link>
</u>
- view heat load analysis only
</li>
<li>
<u>
<Link to="cases">/cases</Link>
</u>
- view a list of cases
</li>
</ul>
</div>
)
Expand Down

0 comments on commit a7095ac

Please sign in to comment.