16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Privacy Policy",
|
||
|
|
description:
|
||
|
|
"Read the RE-Quest Privacy Policy and learn how your information is collected, stored, and protected.",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function PrivacyPolicyLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|