Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
Add installation instructions (minor)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Cuadra committed Sep 3, 2018
1 parent d7bced5 commit e08678c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
1 change: 0 additions & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

- [ ] lock specific menu items
- [ ] WSP2
- [ ] instalation instructions (add to homepage)
- [ ] fix import/export torrent

## Plan
Expand Down
20 changes: 17 additions & 3 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
import Link from 'next/link';
import { Typography } from 'rmwc';
import { Typography, ListDivider } from 'rmwc';
import { TextField } from 'rmwc/TextField';

const IndexPage = () => {
return (
<div>
<Typography use="headline4" tag="div" className="mx-4 my-4">
Installation
</Typography>
<Typography use="body1" tag="div" className="mx-4">
Minimal. This is a web app. Which means you can save it at your
homescreen or bookmark it. Nothing else required.
</Typography>

<Typography use="headline4" tag="div" className="mx-4 my-4">
Usage
</Typography>
Expand Down Expand Up @@ -39,12 +47,18 @@ const IndexPage = () => {
</ol>
</Typography>

<ListDivider />

<Typography use="headline5" tag="div" className="m-4">
Thoughts or suggestions?
</Typography>
<TextField
className="mx-4"
label="Suggestions?"
label="Suggestions"
name="suggestions"
outlined
defaultValue=""
textarea
rows="1"
/>
</div>
);
Expand Down

0 comments on commit e08678c

Please sign in to comment.