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

Commit

Permalink
Add wids 2018 component #14
Browse files Browse the repository at this point in the history
  • Loading branch information
cecivieira committed Dec 9, 2019
1 parent f43cec4 commit 1645745
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/components/Wids2018/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';
import './wids2018.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 Wids2018 = () => (
<div>
<Header poster={poster} />
<h1>WiDS 2018</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 Wids2018;
Empty file.

0 comments on commit 1645745

Please sign in to comment.