Files
joeac.net/website/src/pages/error.astro
Joe Carstairs 86450b3dd8 Infrastructure as code (#3)
* Moves website to website/

* Adds terraform gitignores

* Terraform with AWS provider

* Initialises Terraform

* Locals and variables for provider

* Fetches SSL certificate from ACM

* S3 static website bucket

* CloudFront distribution

* Route53 records

* Deployment workflow uses secret S3 bucket suffix

* Adds README

---------

Co-authored-by: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
2024-05-05 21:00:40 +01:00

15 lines
319 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
import Page from '../layouts/Page.astro';
---
<Page title="Got lost?" description="Error page for Joe's personal website">
<main>
<h1>Got lost?</h1>
<p>
If youre on this page, somethings probably gone wrong. Try going to
my <a href="/">homepage</a> instead.
</p>
</main>
</Page>