File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
src/app/blog/consensus-is-impossible Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments