-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from lottie/work/buttons
Compliance buttons page
- Loading branch information
Showing
15 changed files
with
1,680 additions
and
4 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,170 @@ | ||
import * as React from "react" | ||
|
||
import Container from "react-bootstrap/Container" | ||
import Row from "react-bootstrap/Row" | ||
import Col from "react-bootstrap/Col" | ||
import Table from "react-bootstrap/Table" | ||
|
||
import Layout from "../components/layout" | ||
import Seo from "../components/seo" | ||
|
||
const ComplianceButtonsPage = () => { | ||
return ( | ||
<Layout> | ||
<section className="bg-primary-subtle"> | ||
<Container className="py-5"> | ||
<Row> | ||
<Col className="py-5"> | ||
<h1 className="mb-3 h2">Compliance Buttons</h1> | ||
<div className="fw-normal h5"> | ||
Buttons to represent compliance with the lottie specs | ||
</div> | ||
</Col> | ||
</Row> | ||
</Container> | ||
</section> | ||
<Container className="py-5"> | ||
<Row> | ||
<Col> | ||
<h2>Disclaimer</h2> | ||
<p> | ||
Permission is granted to use the buttons on this page to represent | ||
compliance with the lottie specs. This does not grant permission | ||
to use the Lottie Animation Community logo in unauthorized ways. | ||
</p> | ||
<p> | ||
Use of these buttons does not indicate endorsement from the Lottie | ||
Animation Community. | ||
</p> | ||
<h2>1.0</h2> | ||
<Table striped bordered hover responsive size="sm"> | ||
<thead> | ||
<tr> | ||
<th>Size</th> | ||
<th>Light</th> | ||
<th>Dark</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<th>Small</th> | ||
<td> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-light-28.png" | ||
target="_blank" | ||
> | ||
<img | ||
src="/compliance-buttons/lottie-1.0-light-28.png" | ||
alt="lottie-1.0-light-28.png" | ||
/> | ||
</a> | ||
</td> | ||
<td> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-dark-28.png" | ||
target="_blank" | ||
> | ||
<img | ||
src="/compliance-buttons/lottie-1.0-dark-28.png" | ||
alt="lottie-1.0-dark-28.png" | ||
/> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<th>Medium</th> | ||
<td> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-light-56.png" | ||
target="_blank" | ||
> | ||
<img | ||
src="/compliance-buttons/lottie-1.0-light-56.png" | ||
alt="lottie-1.0-light-56.png" | ||
/> | ||
</a> | ||
</td> | ||
<td> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-dark-56.png" | ||
target="_blank" | ||
> | ||
<img | ||
src="/compliance-buttons/lottie-1.0-dark-56.png" | ||
alt="lottie-1.0-dark-56.png" | ||
/> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr> | ||
<th>Large</th> | ||
<td> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-light-112.png" | ||
target="_blank" | ||
> | ||
<img | ||
src="/compliance-buttons/lottie-1.0-light-112.png" | ||
alt="lottie-1.0-light-112.png" | ||
/> | ||
</a> | ||
</td> | ||
<td> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-dark-112.png" | ||
target="_blank" | ||
> | ||
<img | ||
src="/compliance-buttons/lottie-1.0-dark-112.png" | ||
alt="lottie-1.0-dark-112.png" | ||
/> | ||
</a> | ||
</td> | ||
</tr> | ||
<tr className="iframe-row"> | ||
<th>Scalable</th> | ||
<td className="position-relative"> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-light.svg" | ||
target="_blank" | ||
className="stretched-link" | ||
> | ||
<iframe | ||
src="/compliance-buttons/lottie-1.0-light.svg" | ||
title="lottie-1.0-light.svg" | ||
></iframe></a> | ||
</td> | ||
<td className="position-relative"> | ||
<a | ||
href="/compliance-buttons/lottie-1.0-dark.svg" | ||
target="_blank" | ||
className="stretched-link" | ||
> | ||
<iframe | ||
src="/compliance-buttons/lottie-1.0-dark.svg" | ||
title="lottie-1.0-dark.svg" | ||
></iframe></a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</Table> | ||
</Col> | ||
</Row> | ||
</Container> | ||
</Layout> | ||
) | ||
} | ||
|
||
export default ComplianceButtonsPage | ||
|
||
/** | ||
* Head export to define metadata for the page | ||
* | ||
* See: https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-head/ | ||
*/ | ||
export const Head = () => ( | ||
<Seo | ||
title="Compliance Buttons" | ||
description="Buttons to represent compliance with the lottie specs" | ||
/> | ||
) |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.