15 lines
292 B
TypeScript
15 lines
292 B
TypeScript
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Login | InnungsApp PRO',
|
|
description: 'Melden Sie sich bei Ihrem InnungsApp Konto an.',
|
|
}
|
|
|
|
export default function LoginLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <>{children}</>
|
|
}
|