Skip to content

Commit 74e6f03

Browse files
formatted about (test)
1 parent b0dbdf5 commit 74e6f03

File tree

1 file changed

+41
-26
lines changed

1 file changed

+41
-26
lines changed

src/pages/about.js

+41-26
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import JumbotronHeader from '../components/JumbotronHeader.jsx';
99
import { contactFormLink } from '../content/nav.js';
1010

1111
export default function about() {
12+
const title = 'Gain Real-World Experience By Helping Others';
1213

13-
const title = "Gain Real-World Experience By Helping Others";
14+
const subtitle =
15+
'BUILD provides a venue for students to gain academic and practical knowledge about software development, web development, and tech consulting. We are BUILDING our community through the pro-bono services we offer to nonprofits, startups, and local businesses.';
1416

15-
const subtitle = "BUILD provides a venue for students to gain academic and practical knowledge about software development, web development, and tech consulting. We are BUILDING our community through the pro-bono services we offer to nonprofits, startups, and local businesses.";
16-
17-
const nilayLinkedIn = "https://www.linkedin.com/in/nilay18/";
18-
const mattLinkedIn = "https://www.linkedin.com/in/matthewpearce/";
17+
const nilayLinkedIn = 'https://www.linkedin.com/in/nilay18/';
18+
const mattLinkedIn = 'https://www.linkedin.com/in/matthewpearce/';
1919

2020
const YEARS_SINCE_BUILDS_INCEPTION = new Date().getFullYear() - 2019;
2121

@@ -28,10 +28,7 @@ export default function about() {
2828
subtitle={subtitle}
2929
actions={
3030
<Link href="/apply">
31-
<Button
32-
variant="light"
33-
className="link-btn"
34-
>
31+
<Button variant="light" className="link-btn">
3532
Join Us
3633
</Button>
3734
</Link>
@@ -40,46 +37,64 @@ export default function about() {
4037
</div>
4138
</div>
4239
<Container>
43-
<div
44-
className="py-5"
45-
id="Mission"
46-
>
40+
<div className="py-5" id="Mission">
4741
<Row>
4842
<Col>
49-
<h1>
50-
Mission
51-
</h1>
43+
<h1>Mission</h1>
5244
</Col>
5345
</Row>
5446
<Row>
5547
<Col>
5648
<p>
57-
We leverage technology for the social good. By pairing passionate and driven UMass students with charities and non-profit organizations, we not only engineer software that does good, but foster the talents of the next generation of computer scientists dedicated to making the world a better place.
49+
We leverage technology for the social good. By pairing
50+
passionate and driven UMass students with charities and
51+
non-profit organizations, we not only engineer software that
52+
does good, but foster the talents of the next generation of
53+
computer scientists dedicated to making the world a better
54+
place.
5855
</p>
5956
</Col>
6057
</Row>
6158
</div>
6259

63-
<div
64-
className="pb-5"
65-
id="Story"
66-
>
60+
<div className="pb-5" id="Story">
6761
<Row>
6862
<Col>
69-
<h1>
70-
Our Story
71-
</h1>
63+
<h1>Our Story</h1>
7264
</Col>
7365
</Row>
7466
<Row>
7567
<Col>
7668
<p>
77-
{YEARS_SINCE_BUILDS_INCEPTION} years ago CS students <a href={nilayLinkedIn} target="_blank">Nilay Sadavarte</a> and <a href={mattLinkedIn} target="_blank">Matt Pearce</a> had an idea. They wanted to use their skills to help the community. They wanted to make a difference. They wanted to BUILD! And so, BUILD UMass was born. Since its inception, BUILD has had an impact on dozens of non-profits, charities, and student groups, while helping hundreds of students gain real-world experience in software development, product management, and consulting. We are proud of our accomplishments, but are always looking to do more. If you are an organization that could benefit from the services we provide, we would love to <a href={contactFormLink} target="_blank">hear from you</a>. If you are a student looking to gain real-world experience, we would love for you to be a part of the next chapter of our story.
69+
{YEARS_SINCE_BUILDS_INCEPTION} years ago CS students{' '}
70+
<a href={nilayLinkedIn} target="_blank">
71+
Nilay Sadavarte
72+
</a>{' '}
73+
and{' '}
74+
<a href={mattLinkedIn} target="_blank">
75+
Matt Pearce
76+
</a>{' '}
77+
had an idea. They wanted to use their skills to help the
78+
community. They wanted to make a difference. They wanted to
79+
BUILD! And so, BUILD UMass was born. Since its inception, BUILD
80+
has had an impact on dozens of non-profits, charities, and
81+
student groups, while helping hundreds of students gain
82+
real-world experience in software development, product
83+
management, and consulting. We are proud of our accomplishments,
84+
but are always looking to do more. If you are an organization
85+
that could benefit from the services we provide, we would love
86+
to{' '}
87+
<a href={contactFormLink} target="_blank">
88+
hear from you
89+
</a>
90+
. If you are a student looking to gain real-world experience, we
91+
would love for you to be a part of the next chapter of our
92+
story.
7893
</p>
7994
</Col>
8095
</Row>
8196
</div>
8297
</Container>
8398
</div>
8499
);
85-
}
100+
}

0 commit comments

Comments
 (0)