Skip to content

Commit

Permalink
added text and styling
Browse files Browse the repository at this point in the history
  • Loading branch information
varCepheid committed Aug 2, 2023
1 parent a2faebb commit 3fc034c
Showing 1 changed file with 69 additions and 8 deletions.
77 changes: 69 additions & 8 deletions src/routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,83 @@ import Page from '@/components/page'
import { css } from 'linaria'

const pageStyle = css`
align-content: center;
text-align: center;
`

const textStyle = css`
font-size: 16pt;
color: black;
font-family: Roboto sans-serif serif;
const informationStyle = css`
padding: 0 2rem;
font-size: 22px;
`

const sourceStyle = css`
padding: 3rem 2rem 0 2rem;
font-family: monospace;
`

const boldText = css`
font-weight: bold;
`

const boldSourceText = css`
font-weight: bold;
margin: 0.2rem;
`

const sourceText = css`
margin: 0.2rem;
`

const AboutPage = () => {
return (
<Page name="About" back="/" class={pageStyle}>
<h1>Welcome to Peregrine!</h1>
<div class={textStyle}>
Peregrine is a scouting app for FRC competitions. The frontend is
written in TypeScript and the backend is written in Go.
<div class={informationStyle}>
<p>
<span class={boldText}>
Peregrine is a scouting app for FRC competitions.
</span>{' '}
The frontend is written in TypeScript and the backend is written in
Go. Peregrine was developed by students on team 2733 Pigmice in 2017
and redesigned in the autumn of 2018. Peregrine has been used by 15
teams and counting to simplify scouting at FRC competitions.
</p>
<p>
<span class={boldText}>
Peregrine handles all of the calculations involved in scouting
</span>
, allowing team members to spend time analyzing data and making
decisions instead of crunching numbers. It shows an analysis table
where team members can compare individual statistics or overall
performance between teams and has pages for each team at each event
and the matches each team will play in, easily allowing pit crews to
know when they&rsquo;re up next.
</p>
<p>
<span class={boldText}>
It&rsqou;s really easy to get started with Peregrine.
</span>{' '}
Have a team captain or coach send an email to{' '}
<a href="mailto:alexv@pigmice.com">alexv@pigmice.com</a> and a member
of the Pigmice will add your team to the dropdown on the signup page.
They will also connect you to a Slack channel where your team can ask
questions and give you some tips on setting up your team with
Peregrine.
</p>
</div>
<div class={sourceStyle}>
<p class={boldSourceText}>source code repositories: </p>
<p class={sourceText}>
{' '}
<a href="https://github.com/Pigmice2733/peregrine-frontend">
frontend (TypeScript with the React and Babel plugins){' '}
</a>
</p>
<p class={sourceText}>
{' '}
<a href="https://github.com/Pigmice2733/peregrine-backend">
backend (Go connected to SQL){' '}
</a>
</p>
</div>
</Page>
)
Expand Down

0 comments on commit 3fc034c

Please sign in to comment.