+ )
+}
+export default Contact;
\ No newline at end of file
diff --git a/src/glcc/home/contact/index.scss b/src/glcc/home/contact/index.scss
new file mode 100644
index 000000000..b97f9fa4e
--- /dev/null
+++ b/src/glcc/home/contact/index.scss
@@ -0,0 +1,3 @@
+.contact{
+
+}
\ No newline at end of file
diff --git a/src/glcc/home/index.jsx b/src/glcc/home/index.jsx
new file mode 100644
index 000000000..19651fb4f
--- /dev/null
+++ b/src/glcc/home/index.jsx
@@ -0,0 +1,23 @@
+import React from "react";
+import Banner from "./banner";
+import Lightspot from './lightspot';
+import TimerShaft from './timerShaft';
+import Award from "./award";
+import News from './news';
+import Partner from "./partner";
+
+import './index.scss';
+
+export default ()=>{
+
+ return (
+
+
+
+
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/glcc/home/index.scss b/src/glcc/home/index.scss
new file mode 100644
index 000000000..a699f1804
--- /dev/null
+++ b/src/glcc/home/index.scss
@@ -0,0 +1,5 @@
+.glcc{
+ .glcc-tit{
+ text-align: center;
+ }
+}
\ No newline at end of file
diff --git a/src/glcc/home/lightspot/index.jsx b/src/glcc/home/lightspot/index.jsx
new file mode 100644
index 000000000..8b3b1b1a4
--- /dev/null
+++ b/src/glcc/home/lightspot/index.jsx
@@ -0,0 +1,14 @@
+import React from 'react';
+import './index.scss';
+
+
+function Lightspot() {
+
+ return(
+
+
活动亮点
+
+
+ )
+}
+export default Lightspot;
\ No newline at end of file
diff --git a/src/glcc/home/lightspot/index.scss b/src/glcc/home/lightspot/index.scss
new file mode 100644
index 000000000..3092b88f5
--- /dev/null
+++ b/src/glcc/home/lightspot/index.scss
@@ -0,0 +1,3 @@
+.lightspot{
+
+}
\ No newline at end of file
diff --git a/src/glcc/home/news/index.jsx b/src/glcc/home/news/index.jsx
new file mode 100644
index 000000000..33d4c2474
--- /dev/null
+++ b/src/glcc/home/news/index.jsx
@@ -0,0 +1,14 @@
+import React from 'react';
+import './index.scss';
+
+
+function News() {
+
+ return(
+
+
新闻中心
+
+
+ )
+}
+export default News;
\ No newline at end of file
diff --git a/src/glcc/home/news/index.scss b/src/glcc/home/news/index.scss
new file mode 100644
index 000000000..3b9521471
--- /dev/null
+++ b/src/glcc/home/news/index.scss
@@ -0,0 +1,3 @@
+.news{
+
+}
\ No newline at end of file
diff --git a/src/glcc/home/partner/index.jsx b/src/glcc/home/partner/index.jsx
new file mode 100644
index 000000000..13d7aa5d9
--- /dev/null
+++ b/src/glcc/home/partner/index.jsx
@@ -0,0 +1,14 @@
+import React from 'react';
+import './index.scss';
+
+
+function Partner() {
+
+ return(
+
+
组织方及合作伙伴
+
+
+ )
+}
+export default Partner;
\ No newline at end of file
diff --git a/src/glcc/home/partner/index.scss b/src/glcc/home/partner/index.scss
new file mode 100644
index 000000000..af6dd8c01
--- /dev/null
+++ b/src/glcc/home/partner/index.scss
@@ -0,0 +1,3 @@
+.partner{
+
+}
\ No newline at end of file
diff --git a/src/glcc/home/timerShaft/index.jsx b/src/glcc/home/timerShaft/index.jsx
new file mode 100644
index 000000000..bd3ed191b
--- /dev/null
+++ b/src/glcc/home/timerShaft/index.jsx
@@ -0,0 +1,14 @@
+import React from 'react';
+import './index.scss';
+
+
+function TimerShaft() {
+
+ return(
+
+
时间规划
+
+
+ )
+}
+export default TimerShaft;
\ No newline at end of file
diff --git a/src/glcc/home/timerShaft/index.scss b/src/glcc/home/timerShaft/index.scss
new file mode 100644
index 000000000..88b3a05d8
--- /dev/null
+++ b/src/glcc/home/timerShaft/index.scss
@@ -0,0 +1,3 @@
+.timerShaft{
+
+}
\ No newline at end of file
diff --git a/src/glcc/index.jsx b/src/glcc/index.jsx
new file mode 100644
index 000000000..fad006c57
--- /dev/null
+++ b/src/glcc/index.jsx
@@ -0,0 +1,46 @@
+import React from "react";
+
+import { Route, Switch } from "react-router-dom";
+import { withRouter } from "react-router";
+
+import { SnackbarHOC } from "educoder";
+import { CNotificationHOC } from "../modules/courses/common/CNotificationHOC";
+import { TPMIndexHOC } from "../modules/tpm/TPMIndexHOC";
+import "./index.scss";
+
+import Loadable from "react-loadable";
+import Loading from "../Loading";
+import { ImageLayerOfCommentHOC } from "../modules/page/layers/ImageLayerOfCommentHOC";
+
+
+{/* 任务管理审核 */}
+const Home = Loadable({
+ loader: () => import("./home"),
+ loading: Loading,
+});
+
+
+const Glcc = (propsF) => {
+
+ return (
+