From be86c9d23cdae888598e1f7de7812d7e0f1ca12c Mon Sep 17 00:00:00 2001 From: Victor Chabbert Date: Mon, 31 Jul 2017 18:44:01 +0200 Subject: Refactor routes to new structure --- .../src/scenes/SplashScreen/components/HomeLayout.js | 17 +++++++++++++++++ .../SplashScreen/components/background-zeus-temple.jpg | Bin 0 -> 571089 bytes .../scenes/SplashScreen/components/logo-7-wonders.png | Bin 0 -> 301442 bytes 3 files changed, 17 insertions(+) create mode 100644 frontend/src/scenes/SplashScreen/components/HomeLayout.js create mode 100644 frontend/src/scenes/SplashScreen/components/background-zeus-temple.jpg create mode 100644 frontend/src/scenes/SplashScreen/components/logo-7-wonders.png (limited to 'frontend/src/scenes/SplashScreen/components') diff --git a/frontend/src/scenes/SplashScreen/components/HomeLayout.js b/frontend/src/scenes/SplashScreen/components/HomeLayout.js new file mode 100644 index 00000000..86666eb2 --- /dev/null +++ b/frontend/src/scenes/SplashScreen/components/HomeLayout.js @@ -0,0 +1,17 @@ +// @flow +import type { Children } from 'react'; +import React from 'react'; +import { Banner } from 'rebass'; +import ErrorToastContainer from '../../../components/errors/errorToastContainer'; +import background from './background-zeus-temple.jpg'; +import logo from './logo-7-wonders.png'; + +export default ({ children }: { children: Children }) => ( +
+ + Seven Wonders + {children} + + +
+); diff --git a/frontend/src/scenes/SplashScreen/components/background-zeus-temple.jpg b/frontend/src/scenes/SplashScreen/components/background-zeus-temple.jpg new file mode 100644 index 00000000..5a28e933 Binary files /dev/null and b/frontend/src/scenes/SplashScreen/components/background-zeus-temple.jpg differ diff --git a/frontend/src/scenes/SplashScreen/components/logo-7-wonders.png b/frontend/src/scenes/SplashScreen/components/logo-7-wonders.png new file mode 100644 index 00000000..96974d3e Binary files /dev/null and b/frontend/src/scenes/SplashScreen/components/logo-7-wonders.png differ -- cgit