in website/pages/en/index.js [36:71]
render() {
return (
<div className="homeContainer">
<div className="homeSplashFade">
<div className="wrapper homeWrapper">
<div className="inner">
<img src={siteConfig.baseUrl + siteConfig.mainImg} width="50%"/>
<h2 className="projectTitle">
<small>{siteConfig.tagline}</small>
</h2>
<div className="section promoSection">
<div className="promoRow">
<div className="pluginRowBlock">
<Button
href={
siteConfig.baseUrl + "docs/" + this.props.language + "/support.html"
}
>
Get Started
</Button>
<Button
href={
siteConfig.baseUrl + "docs/" + this.props.language + "/english-vectors.html"
}
>
Download Models
</Button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
);
}