第一次提交
This commit is contained in:
20
auth-portal/src/app/layout.tsx
Normal file
20
auth-portal/src/app/layout.tsx
Normal file
@ -0,0 +1,20 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user