@@ -2,12 +2,17 @@ import React, { Component } from 'react'
22import PropTypes from 'prop-types'
33import { connect } from 'react-redux'
44import Checkbox from 'material-ui/Checkbox'
5- import { FormGroup , FormLabel , FormControlLabel } from 'material-ui/Form'
5+ import { FormControlLabel } from 'material-ui/Form'
66
77import ProjectActionCreator from '../../actions/project'
8- import ListOfProjects from '../ListOfProjects/ListOfProjects'
98import styles from './Home.scss'
10- import { causes , technologies } from '../shared/constants'
9+
10+ import LandingA from '../LandingA/LandingA'
11+ import LandingB from '../LandingB/LandingB'
12+ import LandingC from '../LandingC/LandingC'
13+ import LandingD from '../LandingD/LandingD'
14+ import LandingE from '../LandingE/LandingE'
15+ import LandingF from '../LandingF/LandingF'
1116
1217class Home extends Component {
1318 constructor ( props ) {
@@ -69,26 +74,16 @@ class Home extends Component {
6974
7075 render ( ) {
7176 return (
72- < div className = { styles . homeContainer } >
73- < div className = { styles . homeGrid } >
74- < h1 className = { styles . title } > Find Projects</ h1 >
75- < section className = { styles . filterSection } >
76- < span className = { styles . filterTitle } > < h1 > { 'Filters' } </ h1 > </ span >
77- < FormLabel className = { styles . causeTitle } > Causes</ FormLabel >
78- < FormGroup className = { styles . causesList } >
79- { this . renderList ( causes , 'causes' ) }
80- </ FormGroup >
81- < FormLabel className = { styles . techTitle } > Tech</ FormLabel >
82- < FormGroup className = { styles . techList } >
83- { this . renderList ( technologies , 'technologies' ) }
84- </ FormGroup >
85- </ section >
86-
87- < ListOfProjects
88- title = { 'Find Projects' }
89- projects = { this . state . filteredProjects }
90- className = { styles . projectList }
91- />
77+ < div style = { { 'width' : '100%' } } >
78+ < LandingA />
79+ < div style = { { 'marginTop' : '100vh' , 'width' : '100%' } } >
80+ < LandingB />
81+ < LandingC />
82+ < LandingD />
83+ </ div >
84+ < div style = { { 'position' : 'absolute' , 'left' : 0 , 'right' : 0 } } >
85+ < LandingE />
86+ < LandingF />
9287 </ div >
9388 </ div >
9489 )
0 commit comments