diff --git a/src/components/Button.astro b/src/components/Button.astro new file mode 100644 index 0000000..99899dc --- /dev/null +++ b/src/components/Button.astro @@ -0,0 +1,9 @@ +--- +const {position, text, url, id} = Astro.props; +--- + +{url ? : } \ No newline at end of file diff --git a/src/components/ButtonCollection.astro b/src/components/ButtonCollection.astro new file mode 100644 index 0000000..b7f516d --- /dev/null +++ b/src/components/ButtonCollection.astro @@ -0,0 +1,10 @@ + +
\ No newline at end of file diff --git a/src/components/MainWindow.astro b/src/components/MainWindow.astro index 62fd00e..fbbf795 100644 --- a/src/components/MainWindow.astro +++ b/src/components/MainWindow.astro @@ -4,6 +4,9 @@ import GroupBox from "../components/GroupBox.astro"; import Me from "../components/Me.astro"; import Presence from "../components/Presence.astro"; import Window from "../components/Window.astro"; +import Button from "./Button.astro"; +import ButtonCollection from "./ButtonCollection.astro"; +import Spacer from "./Spacer.astro"; ---