wired up image

This commit is contained in:
Bethlenfalvi, Lorinc (ext)
2025-01-29 17:14:25 +01:00
parent d46961baa8
commit 8657958135

View File

@@ -1,14 +1,13 @@
--- ---
import type { CollectionEntry } from 'astro:content'; import type { CollectionEntry } from 'astro:content';
import Main from './Main.astro'; import Main from './Main.astro';
import { parseTime, printTime } from '../utils/time';
import Time from '../components/Time.svelte'; import Time from '../components/Time.svelte';
type Props = CollectionEntry<'blog'>['data']; type Props = CollectionEntry<'blog'>['data'];
const { title, author, summary, pubDate, updatedDate } = Astro.props; const { title, author, summary, pubDate, updatedDate, image } = Astro.props;
--- ---
<Main title={title} description={summary}> <Main title={title} description={summary} image={image}>
<article class="m-5 mt-3"> <article class="m-5 mt-3">
<header class="lg:grid grid-cols-[auto_auto_minmax(300px,_1fr)] grid-rows-[auto_auto]"> <header class="lg:grid grid-cols-[auto_auto_minmax(300px,_1fr)] grid-rows-[auto_auto]">
<h2 class="font-bold row-span-2 text-2xl m-2 mt-3">{title}</h2> <h2 class="font-bold row-span-2 text-2xl m-2 mt-3">{title}</h2>