From 3fc034c6522030dd4580a6f5abc7516828c1a1ef Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 2 Aug 2023 11:18:49 -0700 Subject: [PATCH] added text and styling --- src/routes/about.tsx | 77 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 69 insertions(+), 8 deletions(-) diff --git a/src/routes/about.tsx b/src/routes/about.tsx index 5681196c4..5cafa7b29 100644 --- a/src/routes/about.tsx +++ b/src/routes/about.tsx @@ -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 (

Welcome to Peregrine!

-
- Peregrine is a scouting app for FRC competitions. The frontend is - written in TypeScript and the backend is written in Go. +
+

+ + Peregrine is a scouting app for FRC competitions. + {' '} + 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. +

+

+ + Peregrine handles all of the calculations involved in scouting + + , 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’re up next. +

+

+ + It&rsqou;s really easy to get started with Peregrine. + {' '} + Have a team captain or coach send an email to{' '} + alexv@pigmice.com 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. +

+
+ )