git ssb

0+

Rômulo Alves / website



Tree: c44ac06334a29af161898bac11e72394e3d96e8f

Files: c44ac06334a29af161898bac11e72394e3d96e8f / _components / talks / Content.js

796 bytesRaw
1// Packages
2import React from 'react';
3import css from 'next/css';
4import Link from 'next/link';
5
6// Components
7import Content from '../common/Content';
8import Anchor from '../common/Anchor';
9
10export default () => (
11 <Content>
12 <div className="container">
13 <h1 className={titleStyle}>
14 Talks
15 </h1>
16 <ul>
17 <li className={listStyle}>
18 <Anchor href="https://speakerdeck.com/romuloalves/componentizando-suas-views-com-react" title="Dojo React at CWI Software">
19 Dojo React at @cwisoftware
20 </Anchor>
21 </li>
22 </ul>
23 </div>
24 </Content>
25);
26
27const titleStyle = css({
28 color: '#000',
29 marginBottom: '10px'
30});
31
32const listStyle = css({
33 fontSize: '10pt',
34 listStyle: 'none',
35 marginBottom: '20px',
36 textAlign: 'left'
37});
38

Built with git-ssb-web