Skip to content
This repository was archived by the owner on Jun 10, 2019. It is now read-only.

Commit 3b940cf

Browse files
alexspencerickr
authored andcommitted
Adding trademarks. fixes #132.
1 parent 4359cdd commit 3b940cf

16 files changed

Lines changed: 31 additions & 20 deletions

File tree

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@
22
{
33
"editor.tabSize": 2,
44
"editor.insertSpaces": true,
5-
"files.trimTrailingWhitespace": true
5+
"files.trimTrailingWhitespace": true,
6+
"search.exclude": {
7+
"**/.git": true,
8+
"**/node_modules": true,
9+
"**/build": true
10+
}
611
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Operation Code
3+
Copyright (c) 2017 Operation Code
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Operation Code</title>
4+
<title>Operation Code</title>
55
<meta charset="utf-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<meta name="description" content="Veteran-founded and led, Operation Code is a 501(c)(3) non-profit whose mission is to aid military, vets and their families learn coding and web technologies.">
8+
<meta name="description" content="Veteran-founded and led, Operation Code is a 501(c)(3) non-profit whose mission is to aid military, vets and their families learn coding and web technologies.">
99
<meta name="keywords" content="operation code, veterans, software development, learn to code, keep coding, veteran coders, senate veterans, house veterans, gi bill, new gi bill, operationcode.org, #operationcode, military vets, vets">
1010
<meta name="author" content="Veteran Coders, for Veterans Coders">
1111
<meta property="og:image" content="https://static1.squarespace.com/static/586d87de725e2585df6e8448/t/5870110d6b8f5b61fdd8ee05/1483739408996/?format=500w" />

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
work correctly both with client-side routing and a non-root public URL.
3131
Learn how to configure a non-root public URL by running `npm run build`.
3232
-->
33-
<title>Operation Code</title>
33+
<title>Operation Code</title>
3434
<!-- Start of Async Drift Code -->
3535
<script>
3636
!function() {

src/config/environment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const config = {
2-
backendUrl: 'http://localhost:3000/api/v1'
2+
backendUrl: 'https://api.operationcode.org/api/v1'
33
};
44

55
export default config;

src/scenes/home/codeSchools/partnerSchools/partnerSchools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class PartnerSchools extends Component {
119119

120120
<div className={styles.noteForSchoolReps}>
121121
<p>
122-
Are you a code school seeking a partnership with Operation Code?
122+
Are you a code school seeking a partnership with Operation Code?
123123
<br />
124124
<a href="mailto:staff@operationcode.org">
125125
Reach out to us!

src/scenes/home/footer/footer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ class Footer extends Component {
3232
</div>
3333
</div>
3434
<div className={styles.copyright}>
35-
Please note that this website is managed by Operation Code.
35+
Please note that this website is managed by Operation Code.
3636
The content of this website is solely the responsibility of
37-
Operation Code.<br />
38-
Copyright 2017 Operation Code
37+
Operation Code.<br />
38+
Copyright 2017 Operation Code
3939
</div>
4040
</div>
4141
);

src/scenes/home/header/logo/logo.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
height: 50px;
1010
}
1111

12+
.trademark {
13+
color: #FFF;
14+
align-self: flex-start;
15+
margin-top:15px;
16+
}
17+
1218
@media screen and (max-width: 900px) {
1319
.logo {
1420
margin-left: 10px;

src/scenes/home/header/logo/logo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Logo extends Component {
77
render() {
88
return (
99
<div className={styles.logo} >
10-
<Link to="/"><img src={logo} alt="" /></Link>
10+
<Link to="/"><img src={logo} alt="" /></Link><span className={styles.trademark}></span>
1111
</div>
1212
);
1313
}

src/scenes/home/header/sideNav/sideNav.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class SideNav extends Component {
9696
<a className={styles.close} href="/" onClick={this.handleCloseClick}>&#10006;</a>
9797
</div>
9898
<a className={styles.logoWrapper} href="/">
99-
<img className={styles.logo} src={logo} alt="Operation Code logo" />
99+
<img className={styles.logo} src={logo} alt="Operation Code logo" />
100100
</a>
101101
</div>
102102
<div className={styles.list}>

0 commit comments

Comments
 (0)