Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak static pages layout #8

Merged
merged 2 commits into from
Aug 8, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Improve redirect page looks
  • Loading branch information
rafalp committed Aug 8, 2019
commit 37b15c8d26e01bf7f85d4dbd7cb350f671c7ff45
18 changes: 16 additions & 2 deletions website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,22 @@
const React = require("react");

const Index = () => (
<div>
<a href="/docs/">Go to docs...</a>
<div className="docMainWrapper wrapper">
<div className="container docsNavContainer" id="docsNav" />
<div className="container mainContainer">
<div className="wrapper">
<div className="post">
<header className="postHeader">
<h1 className="postHeaderTitle">
Welcome to the Saleor documentation!
</h1>
</header>
<article>
<a href="/docs/">Go to documentation contents.</a>
</article>
</div>
</div>
</div>
</div>
);

Expand Down