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) =>
+
+