Files
Michilis 76210db03d first commit
Made-with: Cursor
2026-04-01 02:46:53 +00:00

18 lines
612 B
TypeScript

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Blog - Curated Bitcoin Content from Nostr",
description:
"Read curated Bitcoin articles from the Nostr network. Education, technical analysis, and community insights from the Belgian Bitcoin Embassy.",
openGraph: {
title: "Blog - Belgian Bitcoin Embassy",
description:
"Curated Bitcoin content from the Nostr network. Education, analysis, and insights.",
},
alternates: { canonical: "/blog" },
};
export default function BlogLayout({ children }: { children: React.ReactNode }) {
return children;
}