// Shared shell for the public, login-free legal pages (/privacy, /terms). These must be // reachable unauthenticated — Google's OAuth consent screen links to them and reviewers // fetch them directly — so they render outside the authenticated App tree (see main.tsx). export const CONTACT_EMAIL = "b1fr0stmailops@gmail.com"; export const LAST_UPDATED = "June 14, 2026"; export function LegalLink({ href, children }: { href: string; children: React.ReactNode }) { return ( {children} ); } export default function LegalLayout({ title, children, }: { title: string; children: React.ReactNode; }) { return (
Subfeed

{title}

Last updated: {LAST_UPDATED}

{children}
); } export function H2({ children }: { children: React.ReactNode }) { return

{children}

; }