docs: add links and blocks to the 404 page
This commit is contained in:
parent
37394ed013
commit
1fe705d5df
|
@ -2,6 +2,30 @@
|
|||
title: Page not found
|
||||
---
|
||||
|
||||
import AboutMe from "~/components/AboutMe.astro";
|
||||
import DailyEmailForm from "~/components/DailyEmailForm.astro";
|
||||
import Layout from "~/layouts/PageLayout.astro";
|
||||
|
||||
<Layout title={frontmatter.title} />
|
||||
<Layout title={frontmatter.title}>
|
||||
Perhaps you were looking for one of these pages:
|
||||
|
||||
- [Products and services](/pricing)
|
||||
- [Public speaking and workshops](/talks)
|
||||
- [My daily email list](/daily)
|
||||
- [The Beyond Blocks podcast](/podcast)
|
||||
|
||||
<div class="mt-8 space-y-8">
|
||||
<aside>
|
||||
## Join my Daily Email List
|
||||
|
||||
<DailyEmailForm
|
||||
intro="Sign up and get daily emails about Drupal, PHP and software development."
|
||||
testimonials={["adam-nutall"]}
|
||||
/>
|
||||
</aside>
|
||||
|
||||
<aside>
|
||||
<AboutMe />
|
||||
</aside>
|
||||
</div>
|
||||
</Layout>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: ~/layouts/PageLayout.astro
|
||||
title: Oliver's Daily List
|
||||
title: Oliver's Daily Email List
|
||||
testimonials:
|
||||
- alexander-carr
|
||||
- adam-nuttall
|
||||
|
|
Loading…
Reference in a new issue