react-static
Version:
A progressive static site generator for React
17 lines (14 loc) • 351 B
JavaScript
import React from 'react'
import { withSiteData } from 'react-static'
import glamorous from 'glamorous'
//
import logoImg from '../logo.png'
const LogoImage = glamorous.img({
maxWidth: '100%',
})
export default withSiteData(() => (
<div>
<h1 style={{ textAlign: 'center' }}>Welcome to</h1>
<LogoImage src={logoImg} alt="" />
</div>
))