diff --git a/.changeset/thirty-beans-act.md b/.changeset/thirty-beans-act.md
new file mode 100644
index 000000000..4f930cde5
--- /dev/null
+++ b/.changeset/thirty-beans-act.md
@@ -0,0 +1,5 @@
+---
+'@cloudfour/patterns': minor
+---
+
+Allow the author link prop to be optional
diff --git a/src/components/author/author.stories.mdx b/src/components/author/author.stories.mdx
index 8a5843ef4..d04e96db8 100644
--- a/src/components/author/author.stories.mdx
+++ b/src/components/author/author.stories.mdx
@@ -33,6 +33,13 @@ const allAuthors = [
},
];
const authors = (count) => allAuthors.slice(0, count);
+const authorsWithNoLink = (count) =>
+ allAuthors
+ .map(({ name, avatar }) => ({
+ name,
+ avatar,
+ }))
+ .slice(0, count);
+ {(args) =>
+ template({
+ authors: authorsWithNoLink(args.count),
+ })
+ }
+
+
+
+## With `link`
+
+If an author object contains the optional `link` property, then the author name will be linked.
+
+