diff --git a/public/static/images/android-studio.png b/public/static/images/android-studio.png new file mode 100644 index 0000000..c2d5658 Binary files /dev/null and b/public/static/images/android-studio.png differ diff --git a/public/static/images/java.png b/public/static/images/java.png new file mode 100644 index 0000000..ea83a55 Binary files /dev/null and b/public/static/images/java.png differ diff --git a/src/components/home/ProjectItem.astro b/src/components/home/ProjectItem.astro index 0f41ab6..fbb2aa4 100644 --- a/src/components/home/ProjectItem.astro +++ b/src/components/home/ProjectItem.astro @@ -25,6 +25,7 @@ const { name, description, link, image, tags, backgroundColor } = Astro.props; class="max-h-[40%] max-w-[60%] sm:max-w-[40%]" src={image} alt={`${name}'s logo`} + loading="lazy" />

- - + - + + + @@ -34,6 +35,7 @@ import Item from "~/components/home/TechnologyItem.astro"; + diff --git a/src/components/home/TechnologyItem.astro b/src/components/home/TechnologyItem.astro index 8739d6c..99a9221 100644 --- a/src/components/home/TechnologyItem.astro +++ b/src/components/home/TechnologyItem.astro @@ -12,7 +12,12 @@ const { name, type, image } = Astro.props;

- {`${name}'s + {`${name}'s

{name}

diff --git a/src/core/urls.ts b/src/core/urls.ts index 4b6e2a9..856dcc2 100644 --- a/src/core/urls.ts +++ b/src/core/urls.ts @@ -42,6 +42,8 @@ export class StaticAssets { static bash = `${images}/bash.png`; static podman = `${images}/podman.png`; static pho = `${images}/pho.svg`; + static androidStudio = `${images}/android-studio.png`; + static java = `${images}/java.png`; } export class ExternalAssets {}