Files
beaver_project/auth-portal/src/app/layout.tsx
2026-03-13 16:40:08 +08:00

21 lines
399 B
TypeScript

import './globals.css';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Boardware Genius Auth Portal',
description: 'Dedicated login and registration portal for nanobot containers.',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="zh-CN">
<body>{children}</body>
</html>
);
}