claude again

This commit is contained in:
Andras Schmelczer 2026-05-11 08:12:35 +01:00
parent df2267a968
commit f3fc893675
81 changed files with 945 additions and 2813 deletions

View file

@ -1,25 +1,18 @@
---
import type { ComponentProps } from 'astro/types';
import Base from './Base.astro';
interface Props {
title: string;
description: string;
canonicalPath?: string;
ogImage?: string;
ogType?: 'website' | 'article' | 'profile';
noindex?: boolean;
jsonLd?: Record<string, unknown> | Array<Record<string, unknown>>;
}
type Props = ComponentProps<typeof Base>;
const { title, description } = Astro.props;
---
<Base {...Astro.props}>
<section class="page-shell">
<div class="page-shell">
<header class="page-header">
<h1>{title}</h1>
<p>{description}</p>
</header>
<slot />
</section>
</div>
</Base>