Files
20260512-skg-tk/web/app/login/layout.tsx

12 lines
259 B
TypeScript

import type { Metadata } from "next"
import type { ReactNode } from "react"
export const metadata: Metadata = {
title: { absolute: "" },
description: "",
}
export default function LoginLayout({ children }: { children: ReactNode }) {
return children
}