diff --git a/examples/blog/public/blog.scss b/examples/blog/public/blog.scss
index f74c026921..68db366a15 100644
--- a/examples/blog/public/blog.scss
+++ b/examples/blog/public/blog.scss
@@ -269,3 +269,27 @@ img.cover {
max-height: 50vh;
object-fit: cover;
}
+
+blockquote {
+ font-size: 1.5rem;
+ --padding-block: 1rem;
+ --padding-inline: 1.25rem;
+ --color: var(--theme-divider);
+
+ display: flex;
+ flex-direction: column;
+
+ padding: var(--padding-block) var(--padding-inline);
+ margin-left: calc(var(--padding-inline) * -1);
+ margin-right: calc(var(--padding-inline) * -1);
+
+ background: transparent;
+ border-left: calc(var(--padding-inline) / 2) solid var(--color);
+ border-radius: 0;
+}
+
+blockquote .source {
+ font-weight: 500;
+ color: var(--color);
+ font-size: 1rem;
+}
\ No newline at end of file
diff --git a/examples/blog/src/pages/posts/introducing-astro.md b/examples/blog/src/pages/posts/introducing-astro.md
index 293b3b8f94..16aa33e38d 100644
--- a/examples/blog/src/pages/posts/introducing-astro.md
+++ b/examples/blog/src/pages/posts/introducing-astro.md
@@ -21,9 +21,7 @@ Today I'm excited to publicly share Astro: a new kind of static site builder tha
This post marks the first public beta release of Astro. **Missing features and bugs are still to be expected at this early stage.** There are still some months to go before an official 1.0 release, but there are already several fast sites built with Astro in production today. We would love your early feedback as we move towards a v1.0 release later this year.
-
- A well-designed system makes it easy to do the right things and annoying (but not impossible) to do the wrong things -+> A well-designed system makes it easy to do the right things and annoying (but not impossible) to do the wrong things
– Jeff Atwood
[Falling Into The Pit of Success](https://blog.codinghorror.com/falling-into-the-pit-of-success/)