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

View file

@ -1,11 +1,28 @@
---
import Welcome from '../components/Welcome.astro';
import Layout from '../layouts/Layout.astro';
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
import Layout from "../layouts/BaseLayout.astro";
---
<Layout>
<Welcome />
<title slot="head">Home</title>
<style>
.hero {
grid-area: hero;
display: grid;
place-items: center;
padding: 4rem 2rem;
min-height: 60vh;
background: #f8f9fa;
}
</style>
<Fragment slot="content">
<section class="hero" id="hero">
<div>
<h1>Lorem Ipsum</h1>
<p>
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet,
consectetur, adipisci velit.
</p>
</div>
</section>
</Fragment>
</Layout>