Skip to content

Commit 4ef7cb1

Browse files
author
David Silva
committed
Merge branch 'release/0.9.1'
2 parents 47292fc + 984ff98 commit 4ef7cb1

File tree

5 files changed

+64
-38
lines changed

5 files changed

+64
-38
lines changed

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Microsoft Open Source Code of Conduct
1+
# Code of Conduct
22

3-
This code of conduct outlines expectations for participation in Microsoft-managed open source communities, as well as steps for reporting unacceptable behavior. We are committed to providing a welcoming and inspiring community for all. People violating this code of conduct may be banned from the community.
3+
This code of conduct outlines expectations for participation in our open source communities, as well as steps for reporting unacceptable behavior. We are committed to providing a welcoming and inspiring community for all. People violating this code of conduct may be banned from the community.
44

55
## Our community strives to:
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codecorgi",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"private": true,
55
"proxy": "http://localhost:9500",
66
"devDependencies": {

src/components/footer/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Footer extends React.Component {
3636
<div className="col-md-4 col-sm-6 inner">
3737
<h4>Get In Touch</h4>
3838
<ul className="contacts">
39-
<li><p>We want to hear from you, send us your feedback to:</p></li>
39+
<li><p> Want new features and challenges? Want to share your opinion? Our team of highly trained corgis are ready to chat. Send us an email to:</p></li>
4040
{/*
4141
<!--<li><i className="icon-___location contact"></i> 84 Street, City, State 24813</li>-->
4242
<!--<li><i className="icon-mobile contact"></i> +00 (123) 456 78 90</li>-->
@@ -60,7 +60,7 @@ class Footer extends React.Component {
6060
</div>
6161
<div className="footer-bottom">
6262
<div className="container inner">
63-
<p className="pull-left">© 2017 codecorgi. All rights reserved.</p>
63+
<p className="pull-left">© 2018 codecorgi. All rights reserved.</p>
6464
<ul className="footer-menu pull-right">
6565
<li><Link to="/">Home</Link></li>
6666
<li><Link to="/learning">Learning</Link></li>

src/containers/about/index.js

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import davidImg from '../../assets/images/team/david.png';
88
import corgiImg from '../../assets/images/team/corginson.png';
99
import sydneyImg from '../../assets/images/team/sydney.png';
1010
import { Helmet } from 'react-helmet';
11+
import { Link } from 'react-router-dom';
1112

1213
class About extends React.Component {
1314
render() {
@@ -35,20 +36,15 @@ class About extends React.Component {
3536
<div className="col-sm-6 inner-right-xs inner-bottom-xs">
3637
<h2>Our Mission</h2>
3738
<p>
38-
Codecorgi is a visual portfolio for front-end developers to showcase their code
39-
and experience. Codecorgi's vision is to help employ the workforce by providing
40-
developers continuous training and project experience. Our company believes
41-
that junior developers have a difficulty landing their first programming
42-
career.
39+
Codecorgi is an an open source platform to practice coding with non trivial
40+
codebases on your own terms, for front-end developers. Showcase your code
41+
and experience. Codecorgi's vision is to help devs advance their career by providing
42+
continuous training and project experience. To help them get over the barrier
43+
that junior developers have when landing their first programming job.
4344
</p>
4445
<p>
45-
Our founders want to help novice developers get hired and expand their
46-
opportunities regardless of where they are educated or located. Codecorgi sees
47-
newly minted programmers as underemployed, in a role these students did not
48-
invest time and money for.
49-
</p>
50-
<p>
51-
Codecorgi provides simulation project tickets so that junior programmers gain competitive abilities. Learn by doing projects applicable to the corporate world.
46+
Codecorgi provides simulation project tickets so that junior programmers gain competitive abilities.
47+
Learn by doing projects applicable to the corporate world.
5248
</p>
5349
</div>
5450
<div className="col-sm-6 inner-left-xs inner-bottom-xs">
@@ -58,6 +54,28 @@ class About extends React.Component {
5854
</div>
5955
</figure>
6056
</div>
57+
<div className="col-sm-8 col-xs-12">
58+
<h2>Open Source & ready to improve</h2>
59+
<p>
60+
No secrets here. All our code is open
61+
source to modify and all our decisions
62+
are available to learn from. So feel free
63+
to poke around our code, question our ideas, or tell us what
64+
new features you want.
65+
</p>
66+
<p>
67+
<Link to="https://github.com/corgicode/frontend-react">Check us out on github</Link>
68+
</p>
69+
<h2>Zero bad vibes</h2>
70+
<p>
71+
We’re creating a collaborative & open community,
72+
so take your bad vibes elsewhere. We want
73+
everyone to feel comfortable learning
74+
and making mistakes, chatting with other
75+
collaborators and learning
76+
together.
77+
</p>
78+
</div>
6179
</div>
6280
</div>
6381
</section>

src/containers/home/index.js

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,32 @@ class Home extends React.Component {
4040
</Helmet>
4141
<section className="tall" style={{ backgroundImage: `url(${heroImage})`, backgroundSize: 'cover' }}>
4242
<div className="container">
43-
<h1 className="main white-text">Grow your developer profile</h1>
44-
<div className="fadeInDown-3">
45-
<Link to="/challenges/" className="btn btn-large">Get started now</Link>
46-
</div>
43+
<h1 className="main white-text">Master your craft with real world coding challenges</h1>
44+
<p style={{ color: 'white', fontSize: '25px', textShadow: '4px 3px 5px black'}}>
45+
<strong>An open source platform to practice coding like a boos, on your own terms</strong>
46+
</p>
4747
</div>
4848
</section>
4949
<section>
5050
<div className="container inner-top-md inner-bottom-sm">
5151
<div className="row">
52-
<div className="col-md-5 inner-right inner-bottom-xs">
52+
<div className="col-md-6 inner-right inner-bottom-xs">
5353
<header>
54-
<h1>How it works</h1>
54+
<h1>Practice code with non-trivial codebases</h1>
5555
<p>
56-
Work through tickets/challenges like a real programmer does on the job. Codecorgi provides
57-
simulation project management tickets for you to build real products and
58-
grow your developer portfolio.
56+
Everything's great ‘in theory’, but when
57+
it comes to coding at a best companies,
58+
most bootcamps (and lame organizations)
59+
leave you with little real life knowledge
60+
or new industry skills. We create
61+
challenges that simulate the latest
62+
technology so you’ll have an edge over
63+
the competition.
5964
</p>
6065
</header>
61-
<div><a href="/challenges/" className="btn btn-large btn-one">View Challenges</a></div>
66+
<div><Link to="/challenges/" className="btn btn-large btn-one">View Challenges</Link></div>
6267
</div>
63-
<div className="col-md-7">
68+
<div className="col-md-6">
6469
<figure>
6570
<div className="icon-overlay icn-link">
6671
<img src={ticketImage} alt="Sample challenge in codecorgi" />
@@ -76,16 +81,11 @@ class Home extends React.Component {
7681
<div className="row">
7782
<div className="col-sm-8 col-sm-offset-2 text-center">
7883
<header>
79-
<h1>Work on a ticket,<br />
80-
get feedback on your code</h1>
84+
<h1>Show off your portfolio to employers, <br/>
85+
(and friends who pretend to care)</h1>
86+
<p>Annoy your friends and show off to potential employers by sharing all your completed challenges.</p>
8187
</header>
8288
</div>
83-
<div className="row">
84-
<div className="col-sm-10 col-sm-offset-1 portfolio gap">
85-
<p className="text-center"><strong>Pick a challenge from our list, and share your solution with the community.</strong></p>
86-
<p className="text-center"><strong>Give and receive feedback from other developers.</strong></p>
87-
</div>
88-
</div>
8989
</div>
9090
</div>
9191
</section>
@@ -94,7 +94,15 @@ class Home extends React.Component {
9494
<div className="row">
9595
<div className="col-md-8 col-md-offset-2 text-center">
9696
<header>
97-
<h1>Code in your environment, submit to publish your code for review</h1>
97+
<h1>Code and chill? Sure! / Code on your own terms</h1>
98+
<p>
99+
In real life you’d never code on a
100+
website instead of your computer - so
101+
why practice like that? All
102+
challenges can be downloaded straight
103+
to your computer, so you can work on
104+
your own time and your own terms.
105+
</p>
98106
</header>
99107
</div>
100108
</div>
@@ -110,7 +118,7 @@ class Home extends React.Component {
110118
<div className="col-sm-6">
111119
<figure>
112120
<div className="icon-overlay icn-link">
113-
<img src={formImage} alt="submit to publish your code for review" />
121+
<img src={formImage} alts="submit to publish your code for review" />
114122
</div>
115123
</figure>
116124
</div>

0 commit comments

Comments
 (0)