tiefen_space_web/app/layout.jsx

40 lines
737 B
React
Raw Normal View History

2024-01-03 01:07:16 +08:00
import "./globals.css";
export const metadata = {
2024-05-09 22:03:20 +08:00
title: "铁粉空间",
2024-01-03 01:07:16 +08:00
description: "与Ta永不失联",
2024-05-09 22:03:20 +08:00
keywords: [
"铁粉空间",
"铁粉空间APP",
"社交",
"网红",
"粉丝",
"创作者",
"变现",
"平台",
"铁粉",
"空间",
],
2024-01-03 01:07:16 +08:00
};
export const viewport = {
width: "device-width",
initialScale: 1,
maximumScale: 1,
userScalable: 0,
};
export default function RootLayout({ children }) {
return (
<html
lang="zh-CN"
className="bg-[#07050A]"
data-prefers-color-scheme="dark"
>
<body className="box-border min-h-screen flex flex-col">
<div className="flex flex-1 justify-center">{children}</div>
</body>
</html>
);
}