19 lines
339 B
TypeScript
19 lines
339 B
TypeScript
import type { Metadata } from 'next'
|
||
|
||
export const metadata: Metadata = {
|
||
title: 'Yönetici Girişi',
|
||
description: 'AyrisLegal yönetim paneli erişim sayfası.',
|
||
robots: {
|
||
index: false,
|
||
follow: false,
|
||
},
|
||
}
|
||
|
||
export default function LoginLayout({
|
||
children,
|
||
}: {
|
||
children: React.ReactNode
|
||
}) {
|
||
return <>{children}</>
|
||
}
|