carbon-components-svelte/docs/src/components/Footer.svelte
Eric Liu b7bf9ea1f0
Revise docs (#416)
* chore: add license badge to README

* perf(docs): ignore node_modules in markdown preprocessor

* docs: remove tabs for install commands on homepage

* docs(button-set): improve copy

* docs(button): improve usage for icon-only, link buttons

* docs: various copy improvements
2020-11-26 11:51:24 -08:00

28 lines
566 B
Svelte

<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
height="36px"
src="/powered-by-vercel.svg"
alt="Deploys by Vercel"
/>
</Link>
</Column>
</Row>
</Grid>
</footer>