Skip to content

Commit f337185

Browse files
2 parents 2fde366 + 0e95d27 commit f337185

File tree

5 files changed

+107
-2
lines changed

5 files changed

+107
-2
lines changed

package-lock.json

Lines changed: 21 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/About/About.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.container {
2+
padding: 37px 80px;
3+
}
4+
.description {
5+
line-height: 1.8;
6+
}
7+
.title {
8+
color: #007a7c;
9+
}
10+
.list li {
11+
line-height: 1.8;
12+
}
13+
.link {
14+
color: #007a7c;
15+
font-weight: bold;
16+
}

src/components/About/About.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import React from 'react';
2+
import "./About.css";
3+
4+
const About = () => {
5+
return (
6+
<div className="container">
7+
<p className="description">
8+
The Frontend Study Group is a beginner-friendly project started by Women Who Code Front End to learn about front end
9+
technologies as well as how to collaborate on an open source project in the spirit of Hacktoberfest.
10+
The study group aims to cover the following topics:
11+
</p>
12+
<ul className="list">
13+
<li>HTML, CSS and Javascript</li>
14+
<li>React</li>
15+
<li>Deploying your application</li>
16+
<li>Contributing to opensource</li>
17+
</ul>
18+
<h2 className="title">The Open Source ChatShow</h2>
19+
<p>For the month of October, 2021, we have weekly virtual sessions showcasing voices from the open source community.
20+
Feel free to <a href="https://us02web.zoom.us/webinar/register/WN_0i4q_-RxRnGyr3t_uD_XXw" target="_blank" rel="noopener noreferrer" className="link">
21+
join us!
22+
</a>
23+
</p>
24+
<p>
25+
You can also check out our <a href="https://frontendstudygroup.github.io/blog/" target="_blank" rel="noopener noreferrer"
26+
className="link">blog</a> or contribute to <a href="https://github.com/frontendstudygroup/frontendstudygroup.github.io" target="_blank" rel="noopener noreferrer" className="link">this project.</a>
27+
</p>
28+
</div>
29+
)
30+
}
31+
32+
export default About;

src/components/Router.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import Resources from "./Resources/Resources";
66
import Footer from "./Footer/Footer";
77
import SingleResource from "./SingleResource/SingleResource";
88
import Contact from "./ContactUs/Contact";
9+
import About from "./About/About";
910
import TableView from "./Resources/TableView";
1011

1112

@@ -19,6 +20,7 @@ const Router = () => (
1920
<Route exact path="/resources" component={Resources} />
2021
<Route path="/resources/:id" component={SingleResource} />
2122
<Route exact path="/contact" component={Contact} />
23+
<Route exact path="/about" component={About} />
2224
<Route exact path="/TableView" component={TableView} />
2325
</Switch>
2426
<Footer/>

yarn.lock

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1402,6 +1402,7 @@
14021402
"jest-resolve" "^26.6.2"
14031403
"jest-util" "^26.6.2"
14041404
"jest-worker" "^26.6.2"
1405+
"node-notifier" "^8.0.0"
14051406
"slash" "^3.0.0"
14061407
"source-map" "^0.6.0"
14071408
"string-length" "^4.0.1"
@@ -2843,6 +2844,13 @@
28432844
"resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
28442845
"version" "2.2.0"
28452846

2847+
"bindings@^1.5.0":
2848+
"integrity" "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="
2849+
"resolved" "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"
2850+
"version" "1.5.0"
2851+
dependencies:
2852+
"file-uri-to-path" "1.0.0"
2853+
28462854
"bluebird@^3.5.5":
28472855
"integrity" "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
28482856
"resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
@@ -3273,6 +3281,7 @@
32733281
"anymatch" "^2.0.0"
32743282
"async-each" "^1.0.1"
32753283
"braces" "^2.3.2"
3284+
"fsevents" "^1.2.7"
32763285
"glob-parent" "^3.1.0"
32773286
"inherits" "^2.0.3"
32783287
"is-binary-path" "^1.0.0"
@@ -3291,6 +3300,7 @@
32913300
dependencies:
32923301
"anymatch" "~3.1.2"
32933302
"braces" "~3.0.2"
3303+
"fsevents" "~2.3.2"
32943304
"glob-parent" "~5.1.2"
32953305
"is-binary-path" "~2.1.0"
32963306
"is-glob" "~4.0.1"
@@ -4580,6 +4590,7 @@
45804590
"estraverse" "^5.2.0"
45814591
"esutils" "^2.0.2"
45824592
"optionator" "^0.8.1"
4593+
"source-map" "~0.6.1"
45834594
optionalDependencies:
45844595
"source-map" "~0.6.1"
45854596

@@ -5325,6 +5336,19 @@
53255336
"resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
53265337
"version" "1.0.0"
53275338

5339+
"fsevents@^1.2.7":
5340+
"integrity" "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="
5341+
"resolved" "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"
5342+
"version" "1.2.13"
5343+
dependencies:
5344+
"bindings" "^1.5.0"
5345+
"nan" "^2.12.1"
5346+
5347+
"fsevents@^2.1.2", "fsevents@^2.1.3", "fsevents@~2.3.2":
5348+
"integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
5349+
"resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
5350+
"version" "2.3.2"
5351+
53285352
"function-bind@^1.1.1":
53295353
"integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
53305354
"resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
@@ -6576,6 +6600,7 @@
65766600
"@types/node" "*"
65776601
"anymatch" "^3.0.3"
65786602
"fb-watchman" "^2.0.0"
6603+
"fsevents" "^2.1.2"
65796604
"graceful-fs" "^4.2.4"
65806605
"jest-regex-util" "^26.0.0"
65816606
"jest-serializer" "^26.6.2"
@@ -6968,6 +6993,8 @@
69686993
"integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss="
69696994
"resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
69706995
"version" "4.0.0"
6996+
dependencies:
6997+
"graceful-fs" "^4.1.6"
69716998
optionalDependencies:
69726999
"graceful-fs" "^4.1.6"
69737000

@@ -6976,6 +7003,7 @@
69767003
"resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
69777004
"version" "6.1.0"
69787005
dependencies:
7006+
"graceful-fs" "^4.1.6"
69797007
"universalify" "^2.0.0"
69807008
optionalDependencies:
69817009
"graceful-fs" "^4.1.6"
@@ -7593,6 +7621,11 @@
75937621
"dns-packet" "^1.3.1"
75947622
"thunky" "^1.0.2"
75957623

7624+
"nan@^2.12.1":
7625+
"integrity" "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="
7626+
"resolved" "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"
7627+
"version" "2.15.0"
7628+
75967629
"nanocolors@^0.2.12", "nanocolors@^0.2.2", "nanocolors@^0.2.8":
75977630
"integrity" "sha512-SFNdALvzW+rVlzqexid6epYdt8H9Zol7xDoQarioEFcFN0JHo4CYNztAxmtfgGTVRCmFlEOqqhBpoFGKqSAMug=="
75987631
"resolved" "https://registry.npmjs.org/nanocolors/-/nanocolors-0.2.12.tgz"
@@ -9391,6 +9424,7 @@
93919424
"eslint-webpack-plugin" "^2.5.2"
93929425
"file-loader" "6.1.1"
93939426
"fs-extra" "^9.0.1"
9427+
"fsevents" "^2.1.3"
93949428
"html-webpack-plugin" "4.5.0"
93959429
"identity-obj-proxy" "3.0.0"
93969430
"jest" "26.6.0"
@@ -11359,8 +11393,10 @@
1135911393
"resolved" "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz"
1136011394
"version" "1.7.5"
1136111395
dependencies:
11396+
"chokidar" "^3.4.1"
1136211397
"graceful-fs" "^4.1.2"
1136311398
"neo-async" "^2.5.0"
11399+
"watchpack-chokidar2" "^2.0.1"
1136411400
optionalDependencies:
1136511401
"chokidar" "^3.4.1"
1136611402
"watchpack-chokidar2" "^2.0.1"

0 commit comments

Comments
 (0)