Files
thoughts/thoughts-frontend/app/(auth)/layout.tsx
Gabriel Kaszewski a123c0b8cc
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Has been cancelled
test / unit (pull_request) Has been cancelled
test / integration (pull_request) Has been cancelled
feat(frontend): rich OG metadata + dynamic page titles across all routes
2026-05-15 01:38:59 +02:00

19 lines
340 B
TypeScript

// app/(auth)/layout.tsx
import type { Metadata } from "next";
export const metadata: Metadata = {
openGraph: { type: "website" },
};
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="flex items-center justify-center min-h-screen">
{children}
</div>
);
}