first commit
Made-with: Cursor
This commit is contained in:
17
frontend/app/blog/layout.tsx
Normal file
17
frontend/app/blog/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user