Skip to content
This repository has been archived by the owner on Dec 13, 2020. It is now read-only.

Commit

Permalink
Add wids 2017 component #13
Browse files Browse the repository at this point in the history
  • Loading branch information
cecivieira committed Dec 9, 2019
1 parent 1645745 commit 0d5b4be
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/components/Wids2017/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';
import './wids2017.css';

import Header from '../Header';
import Footer from '../Footer';
import Schedule from '../Schedule';
import Carousel from '../Carousel';
import Participation from '../Participation';

import '../../assets/lib/bulma.css';
import divisor from '../../assets/img/site-divisor-svg.svg';
import poster from '../../assets/img/img-conferencia.png';

const Wids2017 = () => (
<div>
<Header poster={poster} />
<h1>WiDS 2017</h1>
<img className="divisor" src={divisor} alt="Formas geométricas" />
<p>Texto</p>
<h2>Programação</h2>
<Schedule />
<Participation audience="XXXX" speaker="YYYY"/>
<Carousel />
<Footer />
</div>
);

export default Wids2017;
Empty file.

0 comments on commit 0d5b4be

Please sign in to comment.