Skip to content

Commit

Permalink
changed to grid layout and some editing
Browse files Browse the repository at this point in the history
  • Loading branch information
varCepheid committed Aug 2, 2023
1 parent 3fc034c commit 635d578
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -55,7 +58,7 @@ const AboutPage = () => {
</p>
<p>
<span class={boldText}>
It&rsqou;s really easy to get started with Peregrine.
It&rsquo;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
Expand All @@ -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&rsquo;s Peregrine lead, Alex Vennebush, at [email protected].
</p>
</div>
<div class={sourceStyle}>
<p class={boldSourceText}>source code repositories: </p>
Expand All @@ -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>
)
Expand Down

0 comments on commit 635d578

Please sign in to comment.