NeahStable/app/signin/layout.tsx
2026-01-16 21:33:36 +01:00

13 lines
214 B
TypeScript

import { Metadata } from "next";
export const metadata: Metadata = {
title: "NEAH - Connexion",
};
export default function SignInLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}