slight improvement on landing UX
This commit is contained in:
parent
6c637b8433
commit
183618a0c8
5 changed files with 43 additions and 22 deletions
19
src/routes/(editor)/welcome.tsx
Normal file
19
src/routes/(editor)/welcome.tsx
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { A } from "@solidjs/router";
|
||||
import LandingImage from '../../assets/landing.svg'
|
||||
import css from "./welcome.module.css";
|
||||
|
||||
export default function Welcome() {
|
||||
return <main class={css.main}>
|
||||
<LandingImage />
|
||||
|
||||
<h1>Hi, welcome!</h1>
|
||||
<b>Lets get started</b>
|
||||
|
||||
<ul>
|
||||
<li><A href="/edit">Start editing</A></li>
|
||||
{/* <li><A href="/experimental">Try new features</A></li> */}
|
||||
<li><A href="/instructions">Read the instructions</A></li>
|
||||
<li><A href="/about">About this app</A></li>
|
||||
</ul>
|
||||
</main>;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue