-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
35 lines (31 loc) · 858 Bytes
/
index.js
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
import React from 'react'
import Layout from '../components/layout'
import './index.css'
const IndexPage = ({ location }) => (
<Layout location={location}>
<div className="main">
<img
className="headline-logo"
src={require('../images/logo.svg')}
alt="Logo"
/>
<div className="headline">
Libraries & tools for enabling Machine Learning driven user-experiences
on the web
</div>
</div>
<br />
<h2>Guess.js announcement at Google I/O 2018</h2>
<iframe
className="intro-video"
title="Guess.js announcement at Google I/O"
width="560"
height="315"
src="https://www.youtube.com/embed/Mv-l3-tJgGk?start=2093"
frameBorder="0"
allow="autoplay; encrypted-media"
allowFullScreen={true}
/>
</Layout>
)
export default IndexPage