Skip to content

Commit 03d505e

Browse files
committed
add videos
1 parent f9a2ea5 commit 03d505e

File tree

5 files changed

+83
-4
lines changed

5 files changed

+83
-4
lines changed

gatsby-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
siteMetadata: {
33
title: 'includeJS - Learning JavaScript',
4-
description: 'A junior dev figuring out the world of web development.',
4+
description: 'A junior dev figuring out the world of web development. Main topics covered are JavaScript, ReactJS, web development, teaching, community building and accelerated learning.',
55
siteUrl: 'https://includejs.dev/',
66
author: 'Eva @GirlsCodeMK',
77
keywords: ['JavaScript', 'ReactJS', 'git', 'bash', 'web development', 'junior dev', 'women in tech']

src/components/header.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,13 @@ const Header = () => (
4444
Home
4545
</NavLink>
4646
<NavLink to="/TIL" activeClassName="current-page">
47-
TIL
47+
Notes
48+
</NavLink>
49+
<NavLink to="/video" activeClassName="current-page">
50+
Video
4851
</NavLink>
4952
<NavLink to="/contact" activeClassName="current-page">
50-
Contact us
53+
Contact
5154
</NavLink>
5255
<NavLink to="/code-of-conduct" activeClassName="current-page">
5356
Code of conduct

src/components/layout.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ const Layout = ({ children }) => {
6363
margin-bottom: 1.5rem;
6464
}
6565
66+
h5 {
67+
font-weight: 400;
68+
}
69+
6670
a {
6771
text-underline-position: under;
6872
}

src/pages/contact.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default () => (
66
<Layout>
77
<div className="contact-container">
88
<div className="contact-title">
9-
<h2>Contact us</h2>
9+
<h2>Contact me</h2>
1010
</div>
1111

1212
<form

src/pages/video.js

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
import React from 'react';
2+
import Layout from '../components/layout';
3+
import StyledA from '../components/styled-a';
4+
5+
export default () => (
6+
<Layout>
7+
<div>
8+
<h2>Twitch streaming is a thing: 📺</h2>
9+
</div>
10+
<p>
11+
Due to COVID-19, lockdown and all the meetups and other events being
12+
cancelled, I moved online and started streaming on{' '}
13+
<StyledA href="https://www.twitch.tv/edieblu/">Twitch.</StyledA>
14+
</p>
15+
<p>
16+
My streams revolve around starting your journey in tech, getting your
17+
first job as a developer, effective learning, teaching, women in tech,
18+
ReactJS and more.
19+
</p>
20+
21+
<h4>Watch recordings:</h4>
22+
<ul>
23+
<li>
24+
<h5>
25+
Title: Eva and Anjana talk Career change, web development and karaoke. 🎤
26+
<br></br>
27+
April 7, 2020 (
28+
<StyledA href="https://www.youtube.com/watch?v=sAxV1CV1Idc">
29+
YouTube Link
30+
</StyledA>
31+
)
32+
</h5>
33+
</li>
34+
35+
<li>
36+
<h5>
37+
Eva and Cassidy talk ReactJS, Teaching . Life. Universe. Everything. ⌨️
38+
<br></br>
39+
March 27, 2020 (
40+
<StyledA href="https://www.youtube.com/watch?v=Rw5DtXGTeuc">
41+
YouTube Link
42+
</StyledA>
43+
)
44+
</h5>
45+
</li>
46+
47+
<li>
48+
<h5>
49+
Eva and Jessica talk how to get from self-taught to junior developer 👩‍💻
50+
<br></br>
51+
March 23, 2020 (
52+
<StyledA href="https://www.youtube.com/watch?v=WqWNhpzxFf8">
53+
YouTube Link
54+
</StyledA>
55+
)
56+
</h5>
57+
</li>
58+
59+
<li>
60+
<h5>
61+
Eva and Alexandra talk Things to know when applying for a Rails Girls Summer of Code Scholarship 💬
62+
<br></br>
63+
March 16, 2020 (
64+
<StyledA href="https://www.youtube.com/watch?v=AOc2PUFWYio">
65+
YouTube Link
66+
</StyledA>
67+
)
68+
</h5>
69+
</li>
70+
</ul>
71+
</Layout>
72+
);

0 commit comments

Comments
 (0)