blob: 9f15d6203ba41f647f3d5d1060f9c53b5a6b23d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
---
import Layout from '../layouts/Layout.astro';
import { Image } from 'astro:assets';
---
<Layout title="Andrew Lee">
<main class="home">
<Image class="avatar" src="/Alee.png" alt="Andrew Lee" height="200px" width="200px" />
<h1>Hey, I'm Andrew Lee!</h1>
</main>
</Layout>
|