Basic scaffolding of new personal site

This commit is contained in:
badblocks 2026-01-01 21:05:32 -08:00
parent 0e01ed5493
commit e9a666621f
No known key found for this signature in database
11 changed files with 304 additions and 284 deletions

24
src/pages/contact.astro Normal file
View file

@ -0,0 +1,24 @@
---
import Layout from "../layouts/BaseLayout.astro";
---
<Layout>
<title slot="head">Contact</title>
<style>
.contact {
grid-area: contact;
display: grid;
place-items: center;
padding: 4rem 2rem;
background: #f8f9fa;
}
</style>
<Fragment slot="content">
<section class="contact" id="contact">
<div>
<h2>Contact</h2>
<p>Contact information here</p>
</div>
</section>
</Fragment>
</Layout>