2026-03-01 17:58:08 +08:00
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import './globals.css';
|
2026-03-01 03:04:24 +08:00
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2026-03-01 17:58:08 +08:00
|
|
|
title: 'Sub2API 充值',
|
|
|
|
|
description: 'Sub2API 余额充值平台',
|
2026-03-01 03:04:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="zh-CN">
|
2026-03-01 17:58:08 +08:00
|
|
|
<body className="bg-gray-50 text-gray-900 antialiased">{children}</body>
|
2026-03-01 03:04:24 +08:00
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|