diff --git a/pages/index.js b/pages/index.js index e8576ab38..0772405c7 100644 --- a/pages/index.js +++ b/pages/index.js @@ -16,7 +16,8 @@ const indexPageLearns = [ image: '', }, { - link: '#', + link: + 'https://github.com/coderplex/learn/blob/master/web-dev/Backend/Learn-Laravel.md', title: 'Laravel', subject: 'Backend Web Development', image: '', diff --git a/pages/learn.js b/pages/learn.js index 579be93c6..59b35cb9e 100644 --- a/pages/learn.js +++ b/pages/learn.js @@ -1,24 +1,147 @@ import React from 'react'; +import { Accordion, Icon, List } from 'semantic-ui-react'; -import Icon from '../components/icon'; import publicPage from '../hocs/public-page'; +import TopBanner from '../components/top-banner'; -export default publicPage(() => ( -
-
- -

Under Construction, Coming Soon!...

-
- -
-)); +export default publicPage(() => { + return ( +
+ +
+
+ + + + Web Development + + + + + + Frontend + + + + + + Angular + + Front-end web application framework by Google + + + + + + React + + JavaScript library for building user interfaces from + Facebook + + + + + + Vue + + Progressive JavaScript framework for building user + interfaces by community + + + + + + + + Backend + + + + + + Laravel + PHP web framework + + + + + + + + + Data Science + + + + + + Core Data Science + + A field which provides meaningful information from large + amounts of data. + + + + + + + + Distributed Computing + + + + + + Blockchain + + A distributed database technology + + + + + + +
+
+ +
+ ); +});