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

Commit

Permalink
Add wids2019 component #15
Browse files Browse the repository at this point in the history
  • Loading branch information
cecivieira committed Dec 9, 2019
1 parent 9608e6f commit f43cec4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
Binary file added src/assets/img/img-conferencia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions src/components/Wids2019/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';
import './wids2019.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 Wids2019 = () => (
<div>
<Header poster={poster} />
<h1>WiDS 2019</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 Wids2019;
Empty file.

0 comments on commit f43cec4

Please sign in to comment.