diff --git a/.gitignore b/.gitignore index d6ede8a..8f0e1a4 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,9 @@ pnpm-debug.log* public/**/*.jpg public/**/*.png public/**/*.webp +src/**/*.jpg +src/**/*.png +src/**/*.webp # obsidian .obsidian/ diff --git a/astro.config.ts b/astro.config.ts index cf66f29..f6b2c02 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -30,6 +30,9 @@ export default defineConfig({ theme: 'min-light' } }, + experimental: { + assets: true, + }, integrations: [ mdx(), solid(), diff --git a/src/components/cards/Photo.astro b/src/components/cards/Photo.astro index ae86a96..d2d0b44 100644 --- a/src/components/cards/Photo.astro +++ b/src/components/cards/Photo.astro @@ -1,10 +1,12 @@ --- -const image = "/static/iotm/20221016-170316_1.jpg"; +import image from "@assets/home/20221016-170316_1.jpg"; +import Image from "astro/components/Image.astro"; + const alt = "A building covered by multicolor Ivy."; ---

Image of the Month

- - {alt} + + {alt}
diff --git a/src/env.d.ts b/src/env.d.ts index acef35f..4170bce 100644 --- a/src/env.d.ts +++ b/src/env.d.ts @@ -1,2 +1,2 @@ /// -/// +/// diff --git a/src/styles/layouts/_home.scss b/src/styles/layouts/_home.scss index ec5dcf8..c094ef3 100644 --- a/src/styles/layouts/_home.scss +++ b/src/styles/layouts/_home.scss @@ -45,6 +45,6 @@ &__text { text-indent: 1em; - line-height: 1.2em; + line-height: 1.4em; } }