diff --git a/src/components/ReleaseBanner.astro b/src/components/ReleaseBanner.astro new file mode 100644 index 0000000..efc232c --- /dev/null +++ b/src/components/ReleaseBanner.astro @@ -0,0 +1,62 @@ +--- +// TODO: Make this banner configurable through a config file or CMS +// Consider adding fields for: +// - Banner text +// - Link URL +// - Enable/disable flag +// - Expiration date +// - Background color/theme +--- + +
+ + 🎉 aep-2026 has officially been released 🎉 + +
+ + diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx index 720191b..5123503 100644 --- a/src/content/docs/index.mdx +++ b/src/content/docs/index.mdx @@ -19,6 +19,9 @@ hero: --- import { Card, CardGrid, LinkButton } from "@astrojs/starlight/components"; +import ReleaseBanner from "../../components/ReleaseBanner.astro"; + +