Skip to content

Commit 445e199

Browse files
committed
feat: finishing porting from deck
1 parent 89e42d1 commit 445e199

File tree

2 files changed

+68
-2
lines changed

2 files changed

+68
-2
lines changed

assets/cheers.gif

1.46 MB
Loading

presentation/index.js

Lines changed: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ const images = {
3333
makersLogo: require("../assets/makers_logo.png"),
3434
tiroLogo: require("../assets/tiro_logo.jpg"),
3535
pusherLogo: require("../assets/pusher_logo_white.png"),
36-
pizza: require("../assets/pizza-1.gif")
36+
pizza: require("../assets/pizza-1.gif"),
37+
cheers: require("../assets/cheers.gif")
3738
};
3839

3940
preloader(images);
@@ -49,7 +50,7 @@ const theme = createTheme({
4950

5051
const speakers = [
5152
{ name: "Paul Jensen", title: "From LNUG presentation to published book" },
52-
null,
53+
{ name: "", title: "Trading cryptocurrencies, forex, commodities stocks and more using node.js" },
5354
{ name: "Will Munn", title: "Speeding up CI with node and docker" }
5455
];
5556

@@ -138,8 +139,73 @@ export default class Presentation extends React.Component {
138139
<Heading size={5} textColor="secondary">Have something to share?</Heading>
139140
</Slide>
140141

142+
<Slide>
143+
<Heading size={3} textColor="secondary">Get Involved</Heading>
144+
<List>
145+
<ListItem>Assets & Slides</ListItem>
146+
<List>
147+
<ListItem>github.com/lnug/resources</ListItem>
148+
</List>
149+
<ListItem>Website Tips</ListItem>
150+
<List>
151+
<ListItem>github.com/lnug/lnug.github.io</ListItem>
152+
</List>
153+
<ListItem>Gitter Channel</ListItem>
154+
<List>
155+
<ListItem>lnug/discuss</ListItem>
156+
</List>
157+
</List>
158+
</Slide>
159+
160+
<Slide>
161+
<Heading size={3} textColor="secondary">Call for speakers</Heading>
162+
<List>
163+
<ListItem>We have speaker slots available!</ListItem>
164+
<ListItem>Visit github.com/lnug/speakers to submit your talk!</ListItem>
165+
</List>
166+
</Slide>
167+
168+
<Slide>
169+
<Heading size={3} textColor="secondary">Next Time</Heading>
170+
<Heading size={4} textColor="secondary">26th April 2017</Heading>
171+
<Text>
172+
The 4th Wednesday of the month
173+
meetup.com/london-nodejs/
174+
</Text>
175+
<List>
176+
<ListItem>Rubbish in Bins</ListItem>
177+
<ListItem>Stack chairs against walls</ListItem>
178+
<ListItem>Get involved!</ListItem>
179+
</List>
180+
</Slide>
181+
182+
<Slide>
183+
<Heading size={3} textColor="secondary">After Party</Heading>
184+
<Heading size={5} textColor="secondary">The Culpeper</Heading>
185+
<BlockQuote>
186+
40 Commercial Street,
187+
London,
188+
E1 6LP
189+
</BlockQuote>
190+
<Text>http://theculpeper.com/pub/</Text>
191+
<Image src={images.cheers.replace("/", "")} margin="0px auto 40px" height="293px"/>
192+
</Slide>
193+
141194
<SpeakerSlide speaker={speakers[2]} />
142195

196+
<Slide>
197+
<Heading size={3} textColor="secondary">Thank You</Heading>
198+
<Heading size={5} textColor="secondary">Had a great time? Let us know!</Heading>
199+
<Text>github.com/lnug/feedback</Text>
200+
<Heading size={5} textColor="secondary">Brought to you by</Heading>
201+
<List>
202+
<ListItem>Makers Academy</ListItem>
203+
<ListItem>Tiro Partners</ListItem>
204+
<ListItem>Pusher</ListItem>
205+
<ListItem>github.com/orgs/lnug/people</ListItem>
206+
</List>
207+
</Slide>
208+
143209
</Deck>
144210
);
145211
}

0 commit comments

Comments
 (0)