aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/page/Index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/components/page/Index.js')
-rw-r--r--src/client/react/components/page/Index.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/client/react/components/page/Index.js b/src/client/react/components/page/Index.js
new file mode 100644
index 0000000..e5e47c5
--- /dev/null
+++ b/src/client/react/components/page/Index.js
@@ -0,0 +1,15 @@
+import React from 'react';
+import Search from '../container/Search';
+import HelpBox from '../container/HelpBox';
+
+const IndexPage = () => (
+ <div className="page-index">
+ <div className="container">
+ <img src="/icons/mml-logo.png" alt="Metis" />
+ <Search />
+ <HelpBox />
+ </div>
+ </div>
+);
+
+export default IndexPage;