From ca0d83e835a2c06e52cf0565c442842da1e392e2 Mon Sep 17 00:00:00 2001 From: b5 Date: Fri, 21 Feb 2025 10:47:12 -0500 Subject: [PATCH] quick placeholder blog post --- src/app/blog/consensus-is-impossible/page.mdx | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/app/blog/consensus-is-impossible/page.mdx diff --git a/src/app/blog/consensus-is-impossible/page.mdx b/src/app/blog/consensus-is-impossible/page.mdx new file mode 100644 index 00000000..19f82f47 --- /dev/null +++ b/src/app/blog/consensus-is-impossible/page.mdx @@ -0,0 +1,31 @@ +import { BlogPostLayout } from '@/components/BlogPostLayout' +import { EmailSubscribe } from '@/components/EmailSubscribe' + +export const post = { + draft: false, + author: 'b5', + date: '2025-02-21', + title: 'Consensus is Impossible', + description: 'Impossibility proofs are neat!', +} + +export const metadata = { + title: post.title, + description: post.description, + openGraph: { + title: post.title, + description: post.description, + images: [{ + url: `/api/og?title=Blog&subtitle=${post.title}`, + width: 1200, + height: 630, + alt: post.title, + type: 'image/png', + }], + type: 'article' + } +} + +export default (props) => + +