2026-03-02T08-38-25_auto_memory/memories.db-wal
This commit is contained in:
parent
78f666cfa3
commit
923fec3a70
51
chatgpt-to-claude/src/layouts/BaseLayout.astro
Normal file
51
chatgpt-to-claude/src/layouts/BaseLayout.astro
Normal file
@ -0,0 +1,51 @@
|
||||
---
|
||||
import BaseHead from "@/components/BaseHead.astro";
|
||||
import StructuredData from "@/components/StructuredData.astro";
|
||||
import Navigation from "@/components/Navigation";
|
||||
import Footer from "@/components/Footer";
|
||||
import { SITE_URL } from "@/consts";
|
||||
import "@/styles/global.css";
|
||||
|
||||
interface Props {
|
||||
title: string;
|
||||
description: string;
|
||||
image?: string;
|
||||
robots?: string;
|
||||
articleDate?: Date;
|
||||
articleModified?: Date;
|
||||
}
|
||||
|
||||
const { title, description, image, robots, articleDate, articleModified } =
|
||||
Astro.props;
|
||||
|
||||
const orgSchema = {
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
name: "ChatGPT to Claude",
|
||||
url: SITE_URL,
|
||||
logo: `${SITE_URL}/favicon-192.png`,
|
||||
sameAs: ["https://signetai.sh"],
|
||||
};
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<BaseHead
|
||||
title={title}
|
||||
description={description}
|
||||
image={image}
|
||||
robots={robots}
|
||||
articleDate={articleDate}
|
||||
articleModified={articleModified}
|
||||
/>
|
||||
<StructuredData data={orgSchema} />
|
||||
</head>
|
||||
<body class="min-h-screen-safe flex flex-col">
|
||||
<Navigation client:load />
|
||||
<main class="flex-1">
|
||||
<slot />
|
||||
</main>
|
||||
<Footer client:visible />
|
||||
</body>
|
||||
</html>
|
||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user