blob: bb8e3a9508f273241dd1f1fccc456efde33749d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
import Layout from '../layouts/Default.astro';
import { Image } from 'astro:assets';
import './index.css';
---
<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>
|