Skip to content

Commit

Permalink
Tune landing page and about
Browse files Browse the repository at this point in the history
  • Loading branch information
dabreegster committed Dec 16, 2024
1 parent a3258c1 commit 577626b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 31 deletions.
17 changes: 5 additions & 12 deletions src/lib/common/About.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,6 @@
Jadene Aderonmu
</ExternalLink>
</li>
<li>
With UX help from
<ExternalLink href="https://www.linkedin.com/in/madison-wang-841977bb/">
Madison Wang
</ExternalLink> and <ExternalLink href="https://github.com/stuartlynn">
Stuart Lynn
</ExternalLink>, and CSS help from
<ExternalLink href="https://github.com/BudgieInWA">
Ben Ritter
</ExternalLink>
</li>
<li>
With great thanks to our various users for feedback, testing, and ideas
</li>
Expand Down Expand Up @@ -73,7 +62,11 @@
start an issue on Github
</ExternalLink>
or email
<a href="mailto: [email protected]">[email protected]</a>
<a
href="mailto:[email protected]"
>
[email protected]
</a>
.
</p>

Expand Down
31 changes: 14 additions & 17 deletions src/pages/LandingPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,43 +28,40 @@
<Beta />

<h1 style="margin-top: 30px">Welcome to Plan Your Active Travel Schemes!</h1>
<SecondaryButton on:click={() => (showAbout = true)}>About</SecondaryButton>
<About bind:open={showAbout} />

<h2>Sketch Your Scheme:</h2>
<p>
Sketch active travel schemes at a high-level. This tool produces GeoJSON
files that can be shared with others using this tool or imported into other
GIS software.
</p>
<h3>Tutorial</h3>
<DefaultButton on:click={goToSketcher}>Start sketching</DefaultButton>
<p>
<ExternalLink href="https://www.youtube.com/watch?v=6u2lK8xzQfM">
Here
</ExternalLink> is a tutorial explaining the use of the scheme sketcher for all
users, including guidance for those submitting sketches for ATE review.
Watch a tutorial
</ExternalLink> explaining the use of the scheme sketcher for all users, including
guidance for those submitting sketches for ATE review.
</p>
<DefaultButton on:click={goToSketcher}>Start</DefaultButton>

<h2>Browse existing sketches and geographic context:</h2>

<p>
View scheme sketches alongside other contextual layers, like bus routes,
hospital locations, and authority boundaries.
</p>
<DefaultButton on:click={goToBrowser}>Start</DefaultButton>
<DefaultButton on:click={goToBrowser}>Start browsing</DefaultButton>

<h3>Accessibility</h3>
<p>
Our accessibility statement can be found <a href="accessibility.html">
here
</a>
.
</p>
<h3>Further information</h3>

<SecondaryButton on:click={() => (showAbout = true)}>
About this tool
</SecondaryButton>
<About bind:open={showAbout} />

<h3>Privacy</h3>
<p>
Our privacy statement can be found <a href="privacy.html">here</a>
Refer to our <a href="accessibility.html">accessibility statement</a>
and
<a href="privacy.html">privacy statement</a>
.
</p>
</div>
6 changes: 4 additions & 2 deletions src/pages/SketchSchemes.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import { writable } from "svelte/store";
import { emptySchemes } from "scheme-sketcher-lib/draw/stores";
import { getKey } from "lib/common/files";
import ExternalLink from "lib/common/ExternalLink.svelte";
import ExternalLink from "lib/common/ExternalLink.svelte";
// FileManagement will set this up
let gjSchemes = writable(emptySchemes(cfg));
Expand Down Expand Up @@ -91,7 +91,9 @@
</div>

<h2 style="margin-bottom: 0px">Scheme Sketcher</h2>
<ExternalLink href="https://www.youtube.com/watch?v=6u2lK8xzQfM">Tutorial</ExternalLink>
<ExternalLink href="https://www.youtube.com/watch?v=6u2lK8xzQfM">
Tutorial
</ExternalLink>
{/if}

<FileManagement {gjSchemes} {authority} {filename} />
Expand Down

0 comments on commit 577626b

Please sign in to comment.