diff options
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 3 | ||||
| -rw-r--r-- | src/pages/index.css | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 9f15d62..bb8e3a9 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,6 +1,7 @@ --- -import Layout from '../layouts/Layout.astro'; +import Layout from '../layouts/Default.astro'; import { Image } from 'astro:assets'; +import './index.css'; --- <Layout title="Andrew Lee"> diff --git a/src/pages/index.css b/src/pages/index.css new file mode 100644 index 0000000..d242483 --- /dev/null +++ b/src/pages/index.css @@ -0,0 +1,12 @@ +.home { + text-align: center; +} + +.avatar { + border-radius: 50%; +} + +h1 { + font-weight: 500; + font-size: 2.3rem; +} |
