|
| 1 | +import React, { Component, PropTypes } from 'react'; |
| 2 | +import { Link } from 'react-router'; |
| 3 | +import Projects from '../components/projects'; |
| 4 | +import News from '../components/news'; |
| 5 | + |
| 6 | +export default class Home extends React.Component{ |
| 7 | + render () { |
| 8 | + return ( |
| 9 | + <div> |
| 10 | + <div id="carousel-example-generic" className="carousel slide" data-ride="carousel"> |
| 11 | + <ol className="carousel-indicators"> |
| 12 | + <li data-target="#carousel-example-generic" data-slide-to="0" className="active"></li> |
| 13 | + <li data-target="#carousel-example-generic" data-slide-to="1"></li> |
| 14 | + <li data-target="#carousel-example-generic" data-slide-to="2"></li> |
| 15 | + </ol> |
| 16 | + <div className="carousel-inner" role="listbox"> |
| 17 | + <div className="item active"> |
| 18 | + <img width='100%' height='100%' src="/images/p1.jpg" alt="..." /> |
| 19 | + </div> |
| 20 | + </div> |
| 21 | + <a className="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> |
| 22 | + <span className="glyphicon glyphicon-chevron-left"></span> |
| 23 | + <span className="sr-only">Previous</span> |
| 24 | + </a> |
| 25 | + <a className="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> |
| 26 | + <span className="glyphicon glyphicon-chevron-right"></span> |
| 27 | + <span className="sr-only">Next</span> |
| 28 | + </a> |
| 29 | + </div> |
| 30 | + <div className='full-overlay-content'> |
| 31 | + <div className='titleDivService'> |
| 32 | + <h2 className='titleText'>Service</h2> |
| 33 | + </div> |
| 34 | + <div className="row"> |
| 35 | + <div className='col-xs-12 col-sm-12 col-md-12'> |
| 36 | + <div id="service-list" className="tool-idms"> |
| 37 | + <div className="items-tool-idms"> |
| 38 | + <div> |
| 39 | + <i className="fa fa-random" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 40 | + </div> |
| 41 | + <div className="content-items">联合办公</div> |
| 42 | + </div> |
| 43 | + <div className="items-tool-idms"> |
| 44 | + <div> |
| 45 | + <i className="fa fa-video-camera" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 46 | + </div> |
| 47 | + <div className="content-items">项目路演</div> |
| 48 | + </div> |
| 49 | + <div className="items-tool-idms"> |
| 50 | + <div> |
| 51 | + <i className="fa fa-globe" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 52 | + </div> |
| 53 | + <div className="content-items">海外并购</div> |
| 54 | + </div> |
| 55 | + <div className="items-tool-idms"> |
| 56 | + <div> |
| 57 | + <i className="fa fa-user-circle-o" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 58 | + </div> |
| 59 | + <div className="content-items">会员一体化</div> |
| 60 | + </div> |
| 61 | + <div className="items-tool-idms"> |
| 62 | + <div> |
| 63 | + <i className="fa fa-handshake-o" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 64 | + </div> |
| 65 | + <div className="content-items">商务对接</div> |
| 66 | + </div> |
| 67 | + <div className="items-tool-idms"> |
| 68 | + <div> |
| 69 | + <i className="fa fa-mortar-board" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 70 | + </div> |
| 71 | + <div className="content-items">教育培训</div> |
| 72 | + </div> |
| 73 | + <div className="items-tool-idms"> |
| 74 | + <div> |
| 75 | + <i className="fa fa-exchange" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 76 | + </div> |
| 77 | + <div className="content-items">技术交流</div> |
| 78 | + </div> |
| 79 | + <div className="items-tool-idms"> |
| 80 | + <div> |
| 81 | + <i className="fa fa-dollar" aria-hidden="true" style={{ fontSize: '8em', color: '#222' }}></i> |
| 82 | + </div> |
| 83 | + <div className="content-items">投融资直通车</div> |
| 84 | + </div> |
| 85 | + </div> |
| 86 | + </div> |
| 87 | + </div> |
| 88 | + </div> |
| 89 | + <div className='full-overlay-content'> |
| 90 | + <div className='titleDivProjects'> |
| 91 | + <h2 className='titleText'>Projects</h2> |
| 92 | + </div> |
| 93 | + <Projects /> |
| 94 | + |
| 95 | + |
| 96 | + </div> |
| 97 | + <div className='full-overlay-content'> |
| 98 | + <div className='titleDivNews'> |
| 99 | + <h2 className='titleText'>News</h2> |
| 100 | + </div> |
| 101 | + <News /> |
| 102 | + |
| 103 | + |
| 104 | + </div> |
| 105 | + <div className='full-overlay-content' style={{background: 'url(/images/membershipbackground.jpg)'}}> |
| 106 | + <div className='titleDivMembership'> |
| 107 | + <h2>Membership</h2> |
| 108 | + </div> |
| 109 | + <div className="container" style={{ width:'90%'}}> |
| 110 | + <div className="row"> |
| 111 | + <div className="col-md-3 col-sm-6"> |
| 112 | + <div className="pricing-table pt-2 boxed text-center"> |
| 113 | + <h4 className="memberLv">普通会员 </h4> |
| 114 | + <ul> |
| 115 | + <li>中心活动</li> |
| 116 | + <li>办公空间</li> |
| 117 | + </ul> |
| 118 | + </div> |
| 119 | + </div> |
| 120 | + <div className="col-sm-6 col-md-3"> |
| 121 | + <div className="pricing-table pt-2 emphasis text-center"> |
| 122 | + <h4 className="memberLv">金牌会员</h4> |
| 123 | + <ul> |
| 124 | + <li><b>含普通会员服务</b></li> |
| 125 | + <li>商务咨询</li> |
| 126 | + <li>虚拟办公</li> |
| 127 | + </ul> |
| 128 | + </div> |
| 129 | + </div> |
| 130 | + <div className="col-md-3 col-sm-6"> |
| 131 | + <div className="pricing-table pt-2 boxed text-center"> |
| 132 | + <h4 className="memberLv">白金会员</h4> |
| 133 | + <ul> |
| 134 | + <li><b>含金牌会员服务</b></li> |
| 135 | + <li>商务对接</li> |
| 136 | + <li>活动场地租赁</li> |
| 137 | + </ul> |
| 138 | + </div> |
| 139 | + </div> |
| 140 | + <div className="col-sm-6 col-md-3"> |
| 141 | + <div className="pricing-table pt-2 emphasis text-center"> |
| 142 | + <h4 className="memberLv">虚拟代运营</h4> |
| 143 | + <ul> |
| 144 | + <li><b>含白金会员服务</b> </li> |
| 145 | + </ul> |
| 146 | + </div> |
| 147 | + </div> |
| 148 | + </div> |
| 149 | + </div> |
| 150 | + </div> |
| 151 | + <div className='full-overlay-content'> |
| 152 | + <div className='titleDivOurPartners'> |
| 153 | + <h2 className='titleText'>Our Partners</h2> |
| 154 | + </div> |
| 155 | + <div className='container'> |
| 156 | + <div className='row'> |
| 157 | + <div className='col-md-2 col-sm-4 col-xs-6 partnersLogo'> |
| 158 | + <img src="/images/海邦人才基金logo.gif" alt="海邦人才基金"/> |
| 159 | + <p>海邦人才基金</p> |
| 160 | + </div> |
| 161 | + <div className='col-md-2 col-sm-4 col-xs-6 partnersLogo'> |
| 162 | + <img src="/images/海邦人才基金logo.gif" alt="海邦人才基金"/> |
| 163 | + <p>海邦人才基金</p> |
| 164 | + </div> |
| 165 | + <div className='col-md-2 col-sm-4 col-xs-6 partnersLogo'> |
| 166 | + <img src="/images/海邦人才基金logo.gif" alt="海邦人才基金"/> |
| 167 | + <p>海邦人才基金</p> |
| 168 | + </div> |
| 169 | + <div className='col-md-2 col-sm-4 col-xs-6 partnersLogo'> |
| 170 | + <img src="/images/海邦人才基金logo.gif" alt="海邦人才基金"/> |
| 171 | + <p>海邦人才基金</p> |
| 172 | + </div> |
| 173 | + <div className='col-md-2 col-sm-4 col-xs-6 partnersLogo'> |
| 174 | + <img src="/images/海邦人才基金logo.gif" alt="海邦人才基金"/> |
| 175 | + <p>海邦人才基金</p> |
| 176 | + </div> |
| 177 | + <div className='col-md-2 col-sm-4 col-xs-6 partnersLogo'> |
| 178 | + <img src="/images/海邦人才基金logo.gif" alt="海邦人才基金"/> |
| 179 | + <p>海邦人才基金</p> |
| 180 | + </div> |
| 181 | + </div> |
| 182 | + </div> |
| 183 | + </div> |
| 184 | + <div className='full-overlay-content' style={{backgroundColor: '#ebebeb'}}> |
| 185 | + <div className='titleDivContactUs'> |
| 186 | + <h2 className='titleText'>Contact Us</h2> |
| 187 | + </div> |
| 188 | + <div className='container contactUs'> |
| 189 | + <div className='row'> |
| 190 | + <div className='col-md-6'> |
| 191 | + <p><i className="fa fa-envelope-square" aria-hidden="true"></i> |
| 192 | + <span>Email </span>: [email protected] |
| 193 | + </p> |
| 194 | + <p><i className="fa fa-phone-square" aria-hidden="true"></i> |
| 195 | + <span>Phone</span>: +1(408)831-8669 |
| 196 | + </p> |
| 197 | + |
| 198 | + |
| 199 | + |
| 200 | + </div> |
| 201 | + <div className='col-md-6'> |
| 202 | + <p><i className='fa fa-map-marker' aria-hidden="true"></i> |
| 203 | + <span>address</span>: 3350 Scott Blvd #64, Santa Clara, CA |
| 204 | + </p> |
| 205 | + |
| 206 | + |
| 207 | + </div> |
| 208 | + </div> |
| 209 | + </div> |
| 210 | + </div> |
| 211 | + </div> |
| 212 | + ); |
| 213 | + } |
| 214 | +} |
| 215 | +// <iframe src="http://www.google.cn/maps/embed?pb=!1m18!1m12!1m3!1d3170.4507519396566!2d-121.98725088485698!3d37.37917114259411!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x808fc9e4f5297417%3A0x820c186aeca0239d!2zMzM1MCBTY290dCBCbHZkICM2NCwgU2FudGEgQ2xhcmEsIENBIDk1MDUx576O5Zu9!5e0!3m2!1szh-CN!2scn!4v1481037126074" width="600" height="450" frameBorder="0" style="border:0" allowFullsScreen></iframe> |
| 216 | + |
| 217 | +// <div className="item"> |
| 218 | +// <img width='100%' height='100%' src="/images/us2.jpg" alt="..." /> |
| 219 | +// <div className="carousel-caption"> |
| 220 | +// ... |
| 221 | +// </div> |
| 222 | +// </div> |
| 223 | +// <div className="item"> |
| 224 | +// <img width='100%' height='100%' src="/images/us3.jpg" alt="..." /> |
| 225 | +// <div className="carousel-caption"> |
| 226 | +// ... |
| 227 | +// </div> |
| 228 | +// </div> |
0 commit comments