-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwelcome.html
100 lines (99 loc) · 3.86 KB
/
welcome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1 user-scalable=no" />
<title>Seattle Node.js Meetup</title>
<link href="https://fonts.googleapis.com/css?family=Lobster+Two:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700" rel="stylesheet" type="text/css">
<link href="https://unpkg.com/normalize.css@7/normalize.css" rel="stylesheet" type="text/css">
<style>
a, a:link, a:focus, a:visited, a:active, a:hover {
text-decoration: none;
color: #000;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="https://unpkg.com/prop-types@15/prop-types.js"></script>
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.js"></script>
<script src="https://unpkg.com/spectacle@^4/dist/spectacle.js"></script>
<script src="https://unpkg.com/spectacle@^4/lib/one-page.js"></script>
<script src="https://unpkg.com/victory@^0.25/dist/victory.js"></script>
<script type="text/spectacle">
() => {
// Customize the default theme.
const { themes: { defaultTheme } } = Spectacle;
const theme = defaultTheme({
primary: "#c43a31"
});
// The presentation!
return (
<Deck
theme={theme}
progress={"none"}
transition={["zoom", "slide"]}
transitionDuration={500}
>
<Slide bgColor="secondary">
<Heading fit caps>
Seattle Node.js
</Heading>
<Heading fit caps textColor="primary">
Mocks & Testing
</Heading>
<Text textColor="lightGray">
Mike Solomon - <Code textColor="lightGray">@MeeshkanML</Code>
</Text>
<Text textColor="lightGray">
Ian Walker-Sperber - <Code textColor="lightGray">@ianwsperber</Code>
</Text>
<div style={{paddingTop: "1em"}}>
<Link href="https://twitter.com/seattlenode">
<Code textColor="white">@seattlenode</Code>
</Link>
<S type={""} textColor={"white"} textSize={"1.6em"}>|</S>
<Link href="https://twitter.com/formidablelabs">
<Code textColor="white">@formidablelabs</Code>
</Link>
</div>
</Slide>
<Slide bgColor="secondary">
<Image src={"https://rawcdn.githack.com/seanode/welcome/master/images/formidable-white.svg"} width={"100%"} />
</Slide>
<Slide bgColor="secondary">
<Heading fit caps>We're hiring.</Heading>
<Heading fit lineHeight={2}>
<Link href="https://formidable.com/careers/">
<Code textColor="white">formidable.com/careers</Code>
</Link>
</Heading>
</Slide>
<Slide bgColor="secondary">
<Heading fit caps>Your meetup needs you!</Heading>
<hr />
<Appear fid="1">
<Heading size={1} caps textColor="primary">
Speakers
</Heading>
</Appear>
<Appear fid="2">
<Heading size={1} caps textColor="tertiary">
Spaces
</Heading>
</Appear>
<Appear fid="3">
<Heading size={1} caps textColor="primary">
Sponsors
</Heading>
</Appear>
</Slide>
</Deck>
);
}
</script>
</body>
</html>