18 lines
588 B
TypeScript
18 lines
588 B
TypeScript
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;
|
|
}
|