28 lines
608 B
TypeScript
28 lines
608 B
TypeScript
import { Marcellus } from 'next/font/google';
|
|
import '@/app/globals.css';
|
|
|
|
const marcellus = Marcellus({
|
|
subsets: ['latin'],
|
|
variable: '--font-marcellus',
|
|
weight: ['400'],
|
|
});
|
|
|
|
export const metadata = {
|
|
title: 'Kozmos Admin - Giriş Yap',
|
|
description: 'Kozmos Beach & More - Yönetim Paneli Girişi',
|
|
};
|
|
|
|
export default function AuthLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="tr" className={`${marcellus.variable}`}>
|
|
<body className="bg-gray-50 text-gray-900 font-body antialiased min-h-screen">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|