Things are a changing

This commit is contained in:
Anton Pogrebnjak
2026-04-11 00:41:28 +02:00
parent 7e4f1acbf1
commit 31cae670c4
156 changed files with 97707 additions and 120 deletions
+4 -3
View File
@@ -1,5 +1,6 @@
---
import type { CollectionEntry } from "astro:content";
import { Image } from "astro:assets";
import BaseHead from "../components/BaseHead.astro";
import Header from "../components/Header.astro";
import Main from "../components/Main.astro";
@@ -105,9 +106,9 @@ const { title, description, pubDate, updatedDate, heroImage } = Astro.props;
{
heroImage && (
<img
width={1020}
height={510}
src={heroImage}
width={heroImage.width}
height={heroImage.height}
src={heroImage.src}
alt=""
/>
)