blob: 2a3fd8566ff3125b4f91ef3279548e41ecbb184a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 const HomeLayout = ({ children }: { children: Children }) => (
<div>
<Banner align="center" backgroundImage={background}>
<img src={logo} alt="Seven Wonders" />
{children}
</Banner>
<ErrorToastContainer />
</div>
);
|