Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some bonus stuff in the FAQ #43

Merged
merged 3 commits into from
Jul 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 43 additions & 3 deletions app/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,26 @@ import React from 'react';

import { exoFontFamily } from './ThemeProvider';

import { Box, Typography } from '@mui/material';
import { Alert, AlertTitle, Box, Typography } from '@mui/material';

export default function FAQ() {
return (
<Box sx={{ pb: '10vh' }}>
<Alert severity='warning'>
<AlertTitle> Help save Congestion Pricing! </AlertTitle>
Governor Kathy Hochul is trying to kill congestion pricing. Congestion
pricing will improve safety, reduce traffic, speed up buses, improve air
quality, reduce local particulate pollution, reduce noise pollution,
result in an overall improvement quality of life for everyone in lower
manhattan, and raise billions of dollars for public transit
infrastructure. To find out how you can help fight to support congestion
pricing, visit{' '}
<a href='https://savecongestionpricing.org/'>
savecongestionpricing.org
</a>
.
</Alert>

<Typography
variant='h5'
component='h2'
Expand Down Expand Up @@ -71,8 +86,8 @@ export default function FAQ() {
</Typography>

<Typography>
I&apos;m counting each stationing and unstationing as an individual use. That
means most trips generate two uses, and usually at two different
I&apos;m counting each stationing and unstationing as an individual use.
That means most trips generate two uses, and usually at two different
stations. I consider this the most valuable number because it shows how
many times a station is providing value to someone in a day/month. If
you are looking for data about trips taken, you will have to find that
Expand Down Expand Up @@ -157,6 +172,31 @@ export default function FAQ() {
<Typography sx={{ marginTop: 2 }}>
Oh, and I don&apos;t include stations in New Jersey or Canada.
</Typography>

<Typography
variant='h6'
component='h3'
sx={{ fontFamily: exoFontFamily, marginTop: 2 }}
>
What podcasts should I listen to to learn more about urbanism, transit,
and related topics??
</Typography>

<Typography>
<ul>
<li>
<a href='https://thewaroncars.org/'>The War on Cars</a>
</li>
<li>
<a href='https://linktr.ee/deniersplaybook'>
The Climate Denier&apos;s Playbook
</a>
</li>
<li>
<a href='https://nebula.tv/agenda'>The Urbanist Agenda</a>
</li>
</ul>
</Typography>
</Box>
);
}
Loading