Minor landing page content updates
This commit is contained in:
parent
7689b0691c
commit
7d404f4376
@ -24,7 +24,7 @@ class Footer extends React.Component {
|
|||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<footer className="nav-footer" id="footer">
|
<footer className="nav-footer" id="footer">
|
||||||
<section className="sitemap">
|
{/* <section className="sitemap">
|
||||||
<a href={this.props.config.baseUrl} className="nav-home">
|
<a href={this.props.config.baseUrl} className="nav-home">
|
||||||
{this.props.config.footerIcon && (
|
{this.props.config.footerIcon && (
|
||||||
<img
|
<img
|
||||||
@ -81,7 +81,7 @@ class Footer extends React.Component {
|
|||||||
Star
|
Star
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section> */}
|
||||||
|
|
||||||
<a
|
<a
|
||||||
href="https://opensource.facebook.com/"
|
href="https://opensource.facebook.com/"
|
||||||
|
@ -60,13 +60,12 @@ class HomeSplash extends React.Component {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<SplashContainer>
|
<SplashContainer>
|
||||||
<Logo img_src={`${baseUrl}img/undraw_monitor.svg`} />
|
{/* <Logo img_src={`${baseUrl}img/undraw_monitor.svg`} /> */}
|
||||||
<div className="inner">
|
<div className="inner">
|
||||||
<ProjectTitle siteConfig={siteConfig} />
|
<ProjectTitle siteConfig={siteConfig} />
|
||||||
<PromoSection>
|
<PromoSection>
|
||||||
<Button href="#try">Try It Out</Button>
|
<Button href={docUrl('setup-installation.html')}>Getting started</Button>
|
||||||
<Button href={docUrl('doc1.html')}>Example Link</Button>
|
<Button href={docUrl('language-basics-variables.html')}>Language reference</Button>
|
||||||
<Button href={docUrl('doc2.html')}>Example Link 2</Button>
|
|
||||||
</PromoSection>
|
</PromoSection>
|
||||||
</div>
|
</div>
|
||||||
</SplashContainer>
|
</SplashContainer>
|
||||||
@ -149,19 +148,58 @@ class Index extends React.Component {
|
|||||||
<Block layout="fourColumn">
|
<Block layout="fourColumn">
|
||||||
{[
|
{[
|
||||||
{
|
{
|
||||||
content: 'This is the content of my feature',
|
content: 'Write in PascaLIGO (pascal-like syntax) or CameLIGO (caml-like syntax). If you know OCaml, you can also add your own syntax.',
|
||||||
image: `${baseUrl}img/undraw_react.svg`,
|
image: ``,
|
||||||
imageAlign: 'top',
|
imageAlign: 'top',
|
||||||
title: 'Feature One',
|
title: 'Syntax Agnostic',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
content: 'The content of my second feature',
|
content: 'Write types, then code, and benefit from the safety coming from type systems.',
|
||||||
image: `${baseUrl}img/undraw_operating_system.svg`,
|
image: ``,
|
||||||
imageAlign: 'top',
|
imageAlign: 'top',
|
||||||
title: 'Feature Two',
|
title: 'Strong Type System',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
content: 'With Granary, you can use LIGO as a lib from NodeJS.',
|
||||||
|
image: ``,
|
||||||
|
imageAlign: 'top',
|
||||||
|
title: 'Easy Integration',
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
</Block>
|
||||||
|
);
|
||||||
|
|
||||||
|
const Roadmap = () => (
|
||||||
|
<div className="roadmap">
|
||||||
|
<Block background="light" >
|
||||||
|
{[
|
||||||
|
{
|
||||||
|
content:
|
||||||
|
"<h4>June 2019</h4>" +
|
||||||
|
"<em><ul>" +
|
||||||
|
"<li>First public release</li>" +
|
||||||
|
"<li>PascaLIGO and CameLIGO syntaxes</li>" +
|
||||||
|
"<li>Docs and Tutorials</li>" +
|
||||||
|
"<li>Integration testing in ReasonML/JS with Granary</li>" +
|
||||||
|
"</ul></em>" +
|
||||||
|
"<h4>July 2019</h4>" +
|
||||||
|
"<em><ul>" +
|
||||||
|
"<li>Try LIGO online editor</li>" +
|
||||||
|
"<li>Unit testing toolkit</li>" +
|
||||||
|
"<li>ReasonLIGO syntax support</li>" +
|
||||||
|
"<li>Repository with best practices & patterns for LIGO</li>" +
|
||||||
|
"</ul></em>" +
|
||||||
|
"<h4>August 2019</h4>" +
|
||||||
|
"<em>" +
|
||||||
|
"Long term plans will be announced soon" +
|
||||||
|
"</em>",
|
||||||
|
image: ``,
|
||||||
|
imageAlign: 'right',
|
||||||
|
title: 'Roadmap',
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
</Block>
|
</Block>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
const Showcase = () => {
|
const Showcase = () => {
|
||||||
@ -184,11 +222,11 @@ class Index extends React.Component {
|
|||||||
<h2>Who is Using This?</h2>
|
<h2>Who is Using This?</h2>
|
||||||
<p>This project is used by all these people</p>
|
<p>This project is used by all these people</p>
|
||||||
<div className="logos">{showcase}</div>
|
<div className="logos">{showcase}</div>
|
||||||
<div className="more-users">
|
{/* <div className="more-users">
|
||||||
<a className="button" href={pageUrl('users.html')}>
|
<a className="button" href={pageUrl('users.html')}>
|
||||||
More {siteConfig.title} Users
|
More {siteConfig.title} Users
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div> */}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@ -198,11 +236,12 @@ class Index extends React.Component {
|
|||||||
<HomeSplash siteConfig={siteConfig} language={language} />
|
<HomeSplash siteConfig={siteConfig} language={language} />
|
||||||
<div className="mainContainer">
|
<div className="mainContainer">
|
||||||
<Features />
|
<Features />
|
||||||
<FeatureCallout />
|
<Roadmap />
|
||||||
<LearnHow />
|
{/* <FeatureCallout /> */}
|
||||||
<TryOut />
|
{/* {/* <LearnHow /> */}
|
||||||
<Description />
|
{/* <TryOut /> */}
|
||||||
<Showcase />
|
{/* <Description /> */}
|
||||||
|
{/* <Showcase /> */}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -22,7 +22,7 @@ const users = [
|
|||||||
|
|
||||||
const siteConfig = {
|
const siteConfig = {
|
||||||
title: 'Ligo', // Title for your website.
|
title: 'Ligo', // Title for your website.
|
||||||
tagline: 'Smart Contract Language',
|
tagline: 'LIGO is statically typed high-level smart-contract language that compiles down to Tezos. It seeks be easy to use, extensible and safe.',
|
||||||
url: 'https://your-docusaurus-test-site.com', // Your website URL
|
url: 'https://your-docusaurus-test-site.com', // Your website URL
|
||||||
baseUrl: '/', // Base URL for your project */
|
baseUrl: '/', // Base URL for your project */
|
||||||
// For github.io type URLs, you would set the url and baseUrl like:
|
// For github.io type URLs, you would set the url and baseUrl like:
|
||||||
|
@ -14,3 +14,16 @@
|
|||||||
|
|
||||||
@media only screen and (min-width: 1500px) {
|
@media only screen and (min-width: 1500px) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
max-width: 350px;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.projectTitle small {
|
||||||
|
max-width: 500px;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
margin-top: 0.7em;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user