Claude improvements
This commit is contained in:
parent
a86940da30
commit
df2267a968
79 changed files with 2695 additions and 1162 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue