Skip to content

Commit 8d37500

Browse files
authored
quick placeholder blog post (#300)
1 parent b87b383 commit 8d37500

File tree

1 file changed

+31
-0
lines changed
  • src/app/blog/consensus-is-impossible

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { BlogPostLayout } from '@/components/BlogPostLayout'
2+
import { EmailSubscribe } from '@/components/EmailSubscribe'
3+
4+
export const post = {
5+
draft: false,
6+
author: 'b5',
7+
date: '2025-02-21',
8+
title: 'Consensus is Impossible',
9+
description: 'Impossibility proofs are neat!',
10+
}
11+
12+
export const metadata = {
13+
title: post.title,
14+
description: post.description,
15+
openGraph: {
16+
title: post.title,
17+
description: post.description,
18+
images: [{
19+
url: `/api/og?title=Blog&subtitle=${post.title}`,
20+
width: 1200,
21+
height: 630,
22+
alt: post.title,
23+
type: 'image/png',
24+
}],
25+
type: 'article'
26+
}
27+
}
28+
29+
export default (props) => <BlogPostLayout article={post} {...props} />
30+
31+
<iframe width="560" height="315" src="https://www.youtube.com/embed/_VAAC9Rt6H0?si=IWXKlPvoJ2qe6r9R" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>

0 commit comments

Comments
 (0)