Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjustments to landing page - hyperlinks added to paths and explanations for clarity #148

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading