diff --git a/src/components/images/projects/coworking-guide-light.webp b/src/components/images/projects/coworking-guide-light.webp new file mode 100644 index 0000000..52d49ce Binary files /dev/null and b/src/components/images/projects/coworking-guide-light.webp differ diff --git a/src/components/images/projects/lightmode-portfolioroastbot.webp b/src/components/images/projects/lightmode-portfolioroastbot.webp new file mode 100644 index 0000000..54e47b7 Binary files /dev/null and b/src/components/images/projects/lightmode-portfolioroastbot.webp differ diff --git a/src/components/projects/Project.astro b/src/components/projects/Project.astro index 040e49d..d30d07a 100644 --- a/src/components/projects/Project.astro +++ b/src/components/projects/Project.astro @@ -4,6 +4,7 @@ import { Image } from "astro:assets"; interface Props { position?: "left" | "right"; image?: ImageMetadata; + image_light?: ImageMetadata; alt?: string; href: string; title: string; @@ -14,6 +15,7 @@ interface Props { const { image, + image_light, alt, href, title, @@ -40,17 +42,41 @@ const leftProject = position == "left"; {alt} {alt} + {image_light && ( + <> + + + + )} ) } @@ -106,6 +132,14 @@ const leftProject = position == "left";