docs: add vercel to docsite footer

This commit is contained in:
Eric Liu 2020-10-05 15:03:06 -07:00
commit 826c744ec2
4 changed files with 28 additions and 1 deletions

View file

@ -0,0 +1,24 @@
<script>
import { Content, Grid, Row, Column, Link } from "carbon-components-svelte";
</script>
<style>
footer {
background: var(--cds-ui-01);
}
</style>
<footer class="bx--content">
<Grid>
<Row>
<Column>
<Link
href="https://www.vercel.com?utm_source=carbon-components-svelte&utm_campaign=oss"
target="_blank"
>
<img src="/powered-by-vercel.svg" alt="Deploys by Vercel" />
</Link>
</Column>
</Row>
</Grid>
</footer>