-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed to grid layout and some editing
- Loading branch information
1 parent
3fc034c
commit 635d578
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,19 @@ import { css } from 'linaria' | |
|
||
const pageStyle = css` | ||
text-align: center; | ||
display: grid; | ||
grid-template-columns: 1fr minmax(60%, 50rem) 1fr; | ||
` | ||
|
||
const informationStyle = css` | ||
padding: 0 2rem; | ||
font-size: 22px; | ||
grid-column: 2; | ||
` | ||
|
||
const sourceStyle = css` | ||
padding: 3rem 2rem 0 2rem; | ||
font-family: monospace; | ||
grid-column: 2; | ||
` | ||
|
||
const boldText = css` | ||
|
@@ -55,7 +58,7 @@ const AboutPage = () => { | |
</p> | ||
<p> | ||
<span class={boldText}> | ||
It&rsqou;s really easy to get started with Peregrine. | ||
It’s really easy to get started with Peregrine. | ||
</span>{' '} | ||
Have a team captain or coach send an email to{' '} | ||
<a href="mailto:[email protected]">[email protected]</a> and a member | ||
|
@@ -64,6 +67,11 @@ const AboutPage = () => { | |
questions and give you some tips on setting up your team with | ||
Peregrine. | ||
</p> | ||
<p> | ||
If you have any questions about getting your team onboarded to | ||
Peregrine or using the app, please reach out to the Pigmice | ||
team’s Peregrine lead, Alex Vennebush, at [email protected]. | ||
</p> | ||
</div> | ||
<div class={sourceStyle}> | ||
<p class={boldSourceText}>source code repositories: </p> | ||
|
@@ -79,6 +87,7 @@ const AboutPage = () => { | |
backend (Go connected to SQL){' '} | ||
</a> | ||
</p> | ||
<p class={sourceText}>current version: public release 1.0.0</p> | ||
</div> | ||
</Page> | ||
) | ||
|