forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
59 lines (54 loc) · 1.51 KB
/
index.js
File metadata and controls
59 lines (54 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import React from 'react';
import TitleAndMetaTags from '../components/TitleAndMetaTags';
import Layout, { WRAPPER_STYLING } from '../components/layout';
import Hero from '../screens/home/hero';
import Prototype from '../screens/home/prototype';
import Started from '../screens/home/started';
import LoadInView from '../components/LoadInView';
import Experiment from '../screens/home/experiment';
import Teams from '../screens/home/teams';
import Share from '../screens/home/share';
import Join from '../screens/home/join';
import Explore from '../screens/home/explore';
// eslint-disable-next-line
console.log(
'Hi, We love curious people that dive in to see how things are working! We are always looking for talented, hard working people. Drop us a line and show us your work. We are hiring: https://codesandbox.io/jobs'
);
const Homepage = () => (
<Layout noWrapperStyling>
<TitleAndMetaTags />
<section
css={`
margin-bottom: 8rem;
`}
>
<Hero />
</section>
<div style={WRAPPER_STYLING}>
<LoadInView>
<Prototype />
</LoadInView>
<LoadInView>
<Started />
</LoadInView>
</div>
<LoadInView>
<Explore />
</LoadInView>
<div style={WRAPPER_STYLING}>
<LoadInView>
<Experiment />
</LoadInView>
<LoadInView>
<Teams />
</LoadInView>
<LoadInView>
<Share />
</LoadInView>
<LoadInView>
<Join />
</LoadInView>
</div>
</Layout>
);
export default Homepage;