diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
| commit | a0485ad26353a08562c13c14ea9de73fd705f9de (patch) | |
| tree | 1bc499c572e3642b769f7391f493d972a8a749d9 /src/pages | |
| parent | 0349923dd0a970f009ce7ca54881f8c398c67100 (diff) | |
| download | personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.gz personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.bz2 personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.zip | |
Initial Rewrite
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro new file mode 100644 index 0000000..9f15d62 --- /dev/null +++ b/src/pages/index.astro @@ -0,0 +1,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> |
