12 lines
340 B
TypeScript
12 lines
340 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Frequently Asked Questions",
|
||
|
|
description:
|
||
|
|
"Find answers to common questions about RE-Quest, professionals, profiles, and connections.",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function FAQLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|