diff --git a/chatgpt-to-claude/src/layouts/BaseLayout.astro b/chatgpt-to-claude/src/layouts/BaseLayout.astro new file mode 100644 index 000000000..e434e7fee --- /dev/null +++ b/chatgpt-to-claude/src/layouts/BaseLayout.astro @@ -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"], +}; +--- + + + +
+