diff --git a/public/og/blogs.jpg b/public/og/blogs.jpg new file mode 100644 index 0000000..e913cb9 Binary files /dev/null and b/public/og/blogs.jpg differ diff --git a/public/og/docs.jpg b/public/og/docs.jpg new file mode 100644 index 0000000..99d9dc2 Binary files /dev/null and b/public/og/docs.jpg differ diff --git a/public/og/main.jpg b/public/og/main.jpg new file mode 100644 index 0000000..ff82d83 Binary files /dev/null and b/public/og/main.jpg differ diff --git a/public/og/plans.jpg b/public/og/plans.jpg new file mode 100644 index 0000000..15c6aa2 Binary files /dev/null and b/public/og/plans.jpg differ diff --git a/src/layouts/DocLayout.astro b/src/layouts/DocLayout.astro index 394dca3..c5299ca 100644 --- a/src/layouts/DocLayout.astro +++ b/src/layouts/DocLayout.astro @@ -13,13 +13,13 @@ interface Props { description: string; activePage: string; canonicalPath?: string; + ogImage?: string; prev?: { label: string; href: string }; next?: { label: string; href: string }; hidePageNav?: boolean; - ogImage?: string; } -const { title, description, activePage, canonicalPath, prev, next, hidePageNav , ogImage } = Astro.props; +const { title, description, activePage, canonicalPath, ogImage, prev, next, hidePageNav } = Astro.props; const canonicalUrl = canonicalPath ? `https://pilotprotocol.network${canonicalPath}` : undefined; const breadcrumbItems = [ @@ -33,7 +33,7 @@ if (activePage !== 'index') { - +