diff --git a/src/components/Bio.astro b/src/components/Bio.astro
new file mode 100644
index 0000000..e8bf10c
--- /dev/null
+++ b/src/components/Bio.astro
@@ -0,0 +1,29 @@
+
+
+
+ Hi, I'm Maxi. I'm a software engineer and data scientist based in Los Angeles.
+ You can follow me on Twitter,
+ see some of my work on GitHub,
+ or read more about me on my website.
+
+
+
+
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index 6e8158a..5e5761d 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -40,7 +40,6 @@ const { title, description, permalink } = Astro.props;
position: relative;
margin: 0 auto;
max-width: 1400px;
- background-color: white;
padding: 1em 2em;
box-sizing: border-box;
width: 100%;
diff --git a/src/layouts/BlogPostLayout.astro b/src/layouts/BlogPostLayout.astro
index 28942da..2ae8b42 100644
--- a/src/layouts/BlogPostLayout.astro
+++ b/src/layouts/BlogPostLayout.astro
@@ -1,5 +1,6 @@
---
import BaseLayout from './BaseLayout.astro';
+import Bio from '../components/Bio.astro';
const {content} = Astro.props;
const {title, description, publishDate, author, heroImage, permalink, alt} = content;
@@ -16,7 +17,7 @@ const {title, description, publishDate, author, heroImage, permalink, alt} = con
-
+