diff --git a/src/components/Aside.astro b/src/components/Aside.astro new file mode 100644 index 0000000..593b1a9 --- /dev/null +++ b/src/components/Aside.astro @@ -0,0 +1,301 @@ +--- +import type { Aside as BaseProps } from "@astrojs/starlight/components"; + +type Props = Parameters[0]; + +const { type = "note" } = Astro.props; + +const symbols = { + note: "●", + tip: "◆", + caution: "▲", + danger: "■", +}; +--- + + + + + + + +