diff --git a/src/layouts/BlogPostLayout.astro b/src/layouts/BlogPostLayout.astro
index 09cfee3..04d876e 100644
--- a/src/layouts/BlogPostLayout.astro
+++ b/src/layouts/BlogPostLayout.astro
@@ -14,17 +14,19 @@ import Navbar from '../components/navbar.jsx';
{frontmatter.title}
{frontmatter.description}
Author: {frontmatter.author}
-
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index f5368a7..7868cfb 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -4,5 +4,7 @@ module.exports = {
theme: {
extend: {},
},
- plugins: [],
+ plugins: [
+ require('@tailwindcss/typography'),
+ ],
}