diff --git a/package.json b/package.json
index 0432008..d2a4d64 100644
--- a/package.json
+++ b/package.json
@@ -9,6 +9,7 @@
"material-ui": "^0.20.2",
"react": "^16.10.1",
"react-dom": "^16.10.1",
+ "react-native-vector-icons": "^6.6.0",
"react-photo-gallery": "^8.0.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.1.2",
diff --git a/src/Components/App/index.js b/src/Components/App/index.js
index fc85adf..7196045 100644
--- a/src/Components/App/index.js
+++ b/src/Components/App/index.js
@@ -9,7 +9,7 @@ import GalleryPage from '../Gallery';
import NewUser from '../NewUser';
// import AccountPage from '../Account';
import Admin from '../Admin';
-
+import Schedule from '../Schedule';
import * as ROUTES from '../../Constants/routes';
import AdminQuiz from '../admin-quiz';
@@ -26,6 +26,7 @@ const App = () => (
+
{/* */}
diff --git a/src/Components/Schedule/index.js b/src/Components/Schedule/index.js
new file mode 100644
index 0000000..336577c
--- /dev/null
+++ b/src/Components/Schedule/index.js
@@ -0,0 +1,3 @@
+import Schedule from './schedule';
+
+export default Schedule;
\ No newline at end of file
diff --git a/src/Components/Schedule/schedule.js b/src/Components/Schedule/schedule.js
new file mode 100644
index 0000000..056a0a5
--- /dev/null
+++ b/src/Components/Schedule/schedule.js
@@ -0,0 +1,113 @@
+import React from 'react';
+import { VerticalTimeline, VerticalTimelineElement } from 'react-vertical-timeline-component';
+import 'react-vertical-timeline-component/style.min.css';
+//import { Icon } from 'react-native-elements';
+import UseAnimations from 'react-useanimations';
+const back = {
+ background : '#29ffff',
+};
+
+const App = () => ;
+
+const Schedule = () => (
+
+
+
+
+
+ Creative Director
+ Miami, FL
+
+ Creative Direction, User Experience, Visual Design, Project Management, Team Leading
+
+
+ }
+ >
+ Art Director
+ San Francisco, CA
+
+ Creative Direction, User Experience, Visual Design, SEO, Online Marketing
+
+
+ }
+ >
+ Web Designer
+ Los Angeles, CA
+
+ User Experience, Visual Design
+
+
+ }
+ >
+ Web Designer
+ San Francisco, CA
+
+ User Experience, Visual Design
+
+
+ }
+ >
+ Content Marketing for Web, Mobile and Social Media
+ Online Course
+
+ Strategy, Social Media
+
+
+ }
+ >
+ Agile Development Scrum Master
+ Certification
+
+ Creative Direction, User Experience, Visual Design
+
+
+ }
+ >
+ Bachelor of Science in Interactive Digital Media Visual Imaging
+ Bachelor Degree
+
+ Creative Direction, Visual Design
+
+
+ }
+ />
+
+
+
+
+);
+
+export default Schedule;
\ No newline at end of file
diff --git a/src/Constants/routes.js b/src/Constants/routes.js
index d57c398..0e0c6a8 100644
--- a/src/Constants/routes.js
+++ b/src/Constants/routes.js
@@ -5,4 +5,5 @@ export const ACCOUNT = '/account';
export const ADMIN = '/admin';
export const ADMINQUIZ = '/adminquiz'
export const GALLERY = '/gallery';
+export const SCHEDULE = '/schedule';
export const NEWUSER = '/newuser';