mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
* 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
28 lines
566 B
Svelte
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>
|