Claude improvements

This commit is contained in:
Andras Schmelczer 2026-05-11 07:48:33 +01:00
parent a86940da30
commit df2267a968
79 changed files with 2695 additions and 1162 deletions

View file

@ -4,12 +4,17 @@ 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>>;
}
const { title, description } = Astro.props;
---
<Base title={title} description={description}>
<Base {...Astro.props}>
<section class="page-shell">
<header class="page-header">
<h1>{title}</h1>