diff --git a/.changeset/late-mangos-allow.md b/.changeset/late-mangos-allow.md
index 82a180c836..e1e4fe1d56 100644
--- a/.changeset/late-mangos-allow.md
+++ b/.changeset/late-mangos-allow.md
@@ -1,5 +1,28 @@
---
-'@backstage/plugin-home': patch
+'@backstage/plugin-home': minor
---
-Added the HomepageTimer to the new composable Home Page
+The homepage `` is now part of the composable canvas (allowing you to add the , for example).
+
+You will need to wrap your existing composed `` component in ``, ``, and `` components, like this:
+
+```diff
+// app/src/components/home/HomePage.tsx
+
++ import { Content, Header, Page, HomePageTimer } from '@backstage/core-components';
+
+export const HomePage = () => (
++
++
++
+
+
+
+
+ // ...
++
++
+);
+```