This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add browser extension flow pages. (#835)
* update get started section.
Fixes gitpod-io/website#819
* add browser extension flow pages.
* exclude the extension uninstall page from the build.
* small fixes.
- Loading branch information
1 parent
657738d
commit ec896c4
Showing
29 changed files
with
728 additions
and
474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import React from 'react' | ||
|
||
import styled from '@emotion/styled' | ||
import { Link } from 'gatsby' | ||
import { colors } from '../styles/variables' | ||
|
||
const StyledMinimalFooter = styled.footer` | ||
padding: 5rem 0 6rem; | ||
text-align: center; | ||
color: ${colors.lightGrey}; | ||
background: ${colors.offWhite}; | ||
p { | ||
margin-bottom: 2rem; | ||
} | ||
a, | ||
.link { | ||
color: inherit; | ||
font-weight: 400; | ||
} | ||
.link { | ||
padding: 0 1rem; | ||
&:not(:last-child) { | ||
border-right: 1px solid; | ||
} | ||
} | ||
` | ||
|
||
const MinimalFooter = () => ( | ||
<StyledMinimalFooter role="footer"> | ||
<div className="row"> | ||
<p>Copyright © <a href="https://www.gitpod.io/" target="_blank" rel="noopener" title="Gitpod">Gitpod</a></p> | ||
<div> | ||
<Link className="link" to="/imprint">Imprint</Link> | ||
<Link className="link" to="/terms">Terms of Service</Link> | ||
<Link className="link" to="/privacy">Privacy Policy</Link> | ||
</div> | ||
</div> | ||
</StyledMinimalFooter> | ||
) | ||
|
||
export default MinimalFooter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.