This repository has been archived by the owner on Dec 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f43cec4
commit 1645745
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.