claude again
This commit is contained in:
parent
df2267a968
commit
f3fc893675
81 changed files with 945 additions and 2813 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue