mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
18 lines
333 B
Svelte
18 lines
333 B
Svelte
<script>
|
|
import {
|
|
Button,
|
|
Header,
|
|
HeaderNav,
|
|
HeaderNavItem
|
|
} from "carbon-components-svelte";
|
|
import { theme } from "../store";
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>About</title>
|
|
</svelte:head>
|
|
<h1>About this site</h1>
|
|
{$theme}
|
|
<Button>Hello world</Button>
|
|
|
|
<p>This is the 'about' page. There's not much here.</p>
|