feat: re-add About Me block

This commit is contained in:
Oliver Davies 2022-10-15 16:50:13 +01:00
parent 535b4fef45
commit 490aafca9b
5 changed files with 27 additions and 0 deletions

View file

@ -1,4 +1,5 @@
---
import AboutMe from '../../components/AboutMe.astro'
import Layout from '../../layouts/Layout.astro'
import Markdown from '../../components/Markdown.astro'
@ -26,5 +27,7 @@ const { title } = Astro.props.post.frontmatter
<Markdown>
<Content />
</Markdown>
<AboutMe />
</div>
</Layout>

View file

@ -3,8 +3,10 @@ layout: ../layouts/PageLayout.astro
title: Oliver's Daily List
---
import AboutMe from '../components/AboutMe.astro';
import DailyEmailForm from '../components/DailyEmailForm.astro';
A daily newsletter on software development, DevOps, community, and open-source.
<DailyEmailForm />
<AboutMe />

View file

@ -1,4 +1,5 @@
---
import AboutMe from '../../components/AboutMe.astro'
import Events from '../../components/talk/Events.astro'
import Layout from '../../layouts/Layout.astro'
import Markdown from '../../components/Markdown.astro'
@ -38,5 +39,7 @@ const { events, speakerdeck, title, video } = Astro.props.talk.frontmatter
)}
<Events events={events} />
<AboutMe />
</div>
</Layout>