Basic scaffolding of new personal site
This commit is contained in:
parent
0e01ed5493
commit
e9a666621f
11 changed files with 304 additions and 284 deletions
24
src/pages/contact.astro
Normal file
24
src/pages/contact.astro
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue