69da2bf71d
Extract privacy and terms content into reusable components, replace auth modals with links to /privacy and /terms, add settings legal section, and remove duplicate legal-modal markup. Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
320 B
TypeScript
19 lines
320 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
import { brand } from "~/lib/branding";
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: `%s | ${brand.name}`,
|
|
default: `Legal | ${brand.name}`,
|
|
},
|
|
};
|
|
|
|
export default function LegalLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|