Skip to content

Commit 7c2c1c7

Browse files
committed
updated copys
1 parent bf6cae2 commit 7c2c1c7

5 files changed

Lines changed: 52 additions & 21 deletions

File tree

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"name": "react-library",
2+
"name": "thinking-in-react",
33
"version": "1.0.0",
4-
"description": "ReactJS Fundamentals - Library Example",
4+
"description": "Thinking in React - exercise",
55
"main": "index.js",
66
"scripts": {
77
"start": "./node_modules/.bin/babel-node server.js"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/reactjs-academy/library.git"
11+
"url": "git+https://github.com/leanjscom/thinking-in-react.git"
1212
},
13-
"author": "ReactJS Academy",
13+
"author": "LeanJS",
1414
"license": "GPL-3.0",
1515
"bugs": {
16-
"url": "https://github.com/reactjs-academy/library/issues"
16+
"url": "https://github.com/leanjscom/thinking-in-react/issues"
1717
},
18-
"homepage": "https://github.com/reactjs-academy/library#readme",
18+
"homepage": "https://github.com/leanjscom/thinking-in-react#readme",
1919
"dependencies": {
2020
"react": "^15.4.1",
2121
"react-burger-menu": "^1.10.10",

public/img/leanjs.logo.svg

Lines changed: 30 additions & 0 deletions
Loading

src/components/App.jsx

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ class App extends React.Component {
5353
<nav className="navbar navbar-default navbar-fixed-top navbar-custom">
5454
<div className="container">
5555
<div className="navbar-header">
56-
<a className="navbar-brand" href="#page-top">LeanJS</a>
56+
<a className="navbar-brand">LeanJS</a>
5757
</div>
5858
<ul className="nav navbar-nav pull-right">
5959
<li className="hidden-xs">
60-
<a href="#about">About the library</a>
60+
<a href="#about">About us</a>
6161
</li>
6262
<li>
6363
<button onClick={ this.toggleMenu } className="btn btn-lg btn-outline">
@@ -68,7 +68,7 @@ class App extends React.Component {
6868
</div>
6969
</nav>
7070

71-
<Header title="ReactJS Library" />
71+
<Header title="Library" />
7272

7373
<section id="books">
7474
<div className="container">
@@ -107,13 +107,13 @@ class App extends React.Component {
107107
</div>
108108
<div className="row">
109109
<div className="col-lg-4 col-lg-offset-2">
110-
<p>ReactJS is a library for building UI in a <strong style={{textDecoration: 'underline'}}>declarative way</strong>. This web site will help you understand the fundamental piece of ReactJS, components. You'll learn how to break an app in components (AKA componentization) and flow data accross them.</p>
110+
<p>This library is an exercise for building UI in a <strong style={{textDecoration: 'underline'}}>declarative way</strong>. This web site will help you understand the fundamental piece of ReactJS, components. You'll learn how to break an app in components (AKA componentization) and flow data accross them.</p>
111111
</div>
112112
<div className="col-lg-4">
113113
<p>This ReactJS web site works, but it's not well implemented. The problem, the developer didn't think in React and there aren't many components. We challenge you to fork the repo an componentizise the app to unleash the power of ReactJS.</p>
114114
</div>
115115
<div className="col-lg-8 col-lg-offset-2 text-center">
116-
<a target="_blank" href="https://github.com/reactjs-academy/library" className="btn btn-lg btn-outline">
116+
<a target="_blank" href="https://github.com/leanjscom/thinking-in-react" className="btn btn-lg btn-outline">
117117
<i className="fa fa-code-fork"></i> Fork me on Github
118118
</a>
119119
</div>
@@ -131,31 +131,28 @@ class App extends React.Component {
131131
<span>1 Fore Stree</span>
132132
<br />
133133
<span>London, EC2Y 5EJ</span>
134-
<br />
135-
<span className="fa fa-map-marker"></span>
136-
<a target="_blank" href="https://reactjs.academy/react-redux-training"> Other Locations </a>
137134
</p>
138135
</div>
139136
<div className="footer-col col-md-4">
140137
<h3>Around the Web</h3>
141138
<ul className="list-inline">
142139
<li>
143-
<a target="_blank" href="https://github.com/reactjs-academy" className="btn-social btn-outline"><i className="fa fa-fw fa-github"></i></a>
140+
<a target="_blank" href="https://github.com/leanjscom" className="btn-social btn-outline"><i className="fa fa-fw fa-github"></i></a>
144141
</li>
145142
<li>
146-
<a target="_blank" href="https://twitter.com/reactjsacademy" className="btn-social btn-outline"><i className="fa fa-fw fa-twitter"></i></a>
143+
<a target="_blank" href="https://twitter.com/leanjscom" className="btn-social btn-outline"><i className="fa fa-fw fa-twitter"></i></a>
147144
</li>
148145
<li>
149-
<a target="_blank" href="https://www.instagram.com/reactjsacademy/" className="btn-social btn-outline"><i className="fa fa-fw fa-instagram"></i></a>
146+
<a target="_blank" href="https://www.instagram.com/leanjscom/" className="btn-social btn-outline"><i className="fa fa-fw fa-instagram"></i></a>
150147
</li>
151148
</ul>
152149
</div>
153150
<div className="footer-col col-md-4">
154151
<h3>About LeanJS</h3>
155152
<p>
156-
<a href="https://reactjs.academy/">LeanJS </a>
153+
<a href="https://leanjs.com/">LeanJS </a>
157154
<span>
158-
is devoted to teach React across Europe, providing free workshops and private trainings.
155+
is a boutique of excellence focused on Lean, JavaScript, UX, Agile, and people.
159156
</span>
160157
</p>
161158
</div>
@@ -166,7 +163,7 @@ class App extends React.Component {
166163
<div className="container">
167164
<div className="row">
168165
<div className="col-lg-12">
169-
<span>Copyright &copy;</span> <a href="https://reactjs.academy/" target="_blank">LeanJS</a>
166+
<span>Copyright &copy;</span> <a href="https://leanjs.com/" target="_blank">LeanJS</a>
170167
</div>
171168
</div>
172169
</div>

src/components/Header.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const Header = (props) => (
55
<div className="container">
66
<div className="row">
77
<div className="col-lg-12">
8-
<img className="img-responsive logo-academy" src="/public/img/logo.png" />
8+
<img className="img-responsive logo-academy" src="/public/img/leanjs.logo.svg" />
99
<div className="intro-text">
1010
<span className="name">{props.title}</span>
1111
<hr className="star-light" />

src/components/Navigations/Menu.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ const Menu = ({ isOpen, pageWrapId, toggleMenu}) => (
1212
Next Courses
1313
</h4>
1414
<SideMenuItem link="https://leanjs.com/training/react-redux-graphql-london">London</SideMenuItem>
15+
<SideMenuItem link="https://leanjs.com/training/react-redux-graphql-london#redux-training-day">Redux Day</SideMenuItem>
16+
<SideMenuItem link="https://leanjs.com/training/react-redux-graphql-london#advanced-react-training-day">Advanced React</SideMenuItem>
17+
<SideMenuItem>GraphQL (comming soon)</SideMenuItem>
18+
1519
</SideMenu>
1620
)
1721

0 commit comments

Comments
 (0)