first commit
Made-with: Cursor
This commit is contained in:
17
frontend/app/faq/layout.tsx
Normal file
17
frontend/app/faq/layout.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FAQ - Frequently Asked Questions",
|
||||
description:
|
||||
"Everything you need to know about the Belgian Bitcoin Embassy. Common questions about Bitcoin meetups, community, education, and how to get involved.",
|
||||
openGraph: {
|
||||
title: "FAQ - Belgian Bitcoin Embassy",
|
||||
description:
|
||||
"Answers to common questions about the Belgian Bitcoin Embassy.",
|
||||
},
|
||||
alternates: { canonical: "/faq" },
|
||||
};
|
||||
|
||||
export default function FaqLayout({ children }: { children: React.ReactNode }) {
|
||||
return children;
|
||||
}
|
||||
Reference in New Issue
Block a user