Skip to content

Commit 6c10052

Browse files
committed
add brief-introduction.md
1 parent c8fa2e8 commit 6c10052

File tree

5 files changed

+45
-15
lines changed

5 files changed

+45
-15
lines changed

_data/navigation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
docs:
33
- title: Introduction
44
children:
5-
- title: "What is React?"
5+
- title: "Brief Introduction"
66
url: /
7+
- title: "What is React?"
8+
url: /what-is-react
79
- title: Semantics/Terminology
810
children:
911
- title: "React Semantics/Terminology"

_docs/0-brief-introduction.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "Brief Introduction"
3+
permalink: /
4+
excerpt: "Welcome to Learn React, a comprehensive introduction to Reactjs. - Learn React"
5+
last_modified_at: 2018-05-14T15:58:49-04:00
6+
---
7+
8+
If you have heard about React but are not sure of what it really is, how it is useful, or how to start your first React application, you have come to the right place!
9+
10+
Welcome to ***Learn React***, a comprehensive introduction to Reactjs. In this tutorial, we'll take you step by step through the fundamental concepts of React. By understanding the concepts underlying React through practical examples, we hope that by the end of this tutorial you will have enough knowledge to create your own React applications.
11+
12+
Each chapter will start with a example that will give you a brief overview, followed by a more complete explanation of the React concept and what this concept looks like in practice.
13+
14+
Let's [get started!](/what-is-react)

_docs/01-what-is-react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "What is React?"
3-
permalink: /
3+
permalink: /what-is-react
44
excerpt: "What is React? - Learn React"
55
last_modified_at: 2018-05-14T15:58:49-04:00
66
---

_site/index.html

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
<head>
1010
<meta charset="utf-8">
1111

12-
<!-- begin _includes/seo.html --><title>What is React? - Learn React</title>
13-
<meta name="description" content="What is React? - Learn React">
12+
<!-- begin _includes/seo.html --><title>Brief Introduction - Learn React</title>
13+
<meta name="description" content="Welcome to Learn React, a comprehensive introduction to Reactjs. - Learn React">
1414

1515

1616

1717
<meta property="og:type" content="article">
1818
<meta property="og:locale" content="en_US">
1919
<meta property="og:site_name" content="Learn React">
20-
<meta property="og:title" content="What is React?">
20+
<meta property="og:title" content="Brief Introduction">
2121
<meta property="og:url" content="/">
2222

2323

24-
<meta property="og:description" content="What is React? - Learn React">
24+
<meta property="og:description" content="Welcome to Learn React, a comprehensive introduction to Reactjs. - Learn React">
2525

2626

2727

@@ -31,7 +31,7 @@
3131

3232

3333

34-
<meta property="article:published_time" content="2018-05-23T16:29:52+07:00">
34+
<meta property="article:published_time" content="2018-05-23T17:04:06+07:00">
3535

3636

3737

@@ -182,7 +182,15 @@
182182

183183

184184

185-
<li><a href="/" class="active">What is React?</a></li>
185+
<li><a href="/" class="active">Brief Introduction</a></li>
186+
187+
188+
189+
190+
191+
192+
193+
<li><a href="/what-is-react" class="">What is React?</a></li>
186194

187195
</ul>
188196

@@ -636,27 +644,29 @@
636644

637645

638646
<article class="page" itemscope itemtype="http://schema.org/CreativeWork">
639-
<meta itemprop="headline" content="What is React?">
640-
<meta itemprop="description" content="What is React? - Learn React">
647+
<meta itemprop="headline" content="Brief Introduction">
648+
<meta itemprop="description" content="Welcome to Learn React, a comprehensive introduction to Reactjs. - Learn React">
641649

642650
<meta itemprop="dateModified" content="May 15, 2018">
643651

644652
<div class="page__inner-wrap">
645653

646654
<header>
647-
<h1 id="page-title" class="page__title" itemprop="headline">What is React?
655+
<h1 id="page-title" class="page__title" itemprop="headline">Brief Introduction
648656
</h1>
649657

650658
</header>
651659

652660

653661
<section class="page__content" itemprop="text">
654662

655-
<p>React is a UI library developed at Facebook to facilitate the creation of interactive, stateful and reusable UI components. It is used at Facebook in production, and Instagram is written in React.</p>
663+
<p>If you have heard about React but are not sure of what it really is, how it is useful, or how to start your first React application, you have come to the right place!</p>
664+
665+
<p>Welcome to <strong><em>Learn React</em></strong>, a comprehensive introduction to Reactjs. In this tutorial, we’ll take you step by step through the fundamental concepts of React. By understanding the concepts underlying React through practical examples, we hope that by the end of this tutorial you will have enough knowledge to create your own React applications.</p>
656666

657-
<p>One of it’s unique points is that not only does it perform on the client side, but it can also be rendered server side, and they can work together inter-operably.</p>
667+
<p>Each chapter will start with a example that will give you a brief overview, followed by a more complete explanation of the React concept and what this concept looks like in practice.</p>
658668

659-
<p><img src="/assets/images/react.png" alt="React" /></p>
669+
<p>Let’s <a href="/what-is-react">get started!</a></p>
660670

661671

662672
</section>
@@ -679,7 +689,7 @@ <h1 id="page-title" class="page__title" itemprop="headline">What is React?
679689
<a href="#" class="pagination--pager disabled">Previous</a>
680690

681691

682-
<a href="/react-semantics-and-terminology" class="pagination--pager" title="React Semantics/Terminology
692+
<a href="/what-is-react" class="pagination--pager" title="What is React?
683693
">Next</a>
684694

685695
</nav>

_site/sitemap.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
<lastmod>2018-05-15T02:58:49+07:00</lastmod>
66
</url>
77
<url>
8+
<loc>/what-is-react</loc>
9+
<lastmod>2018-05-15T02:58:49+07:00</lastmod>
10+
</url>
11+
<url>
812
<loc>/react-semantics-and-terminology</loc>
913
<lastmod>2018-05-15T02:58:49+07:00</lastmod>
1014
</url>

0 commit comments

Comments
 (0)