tiefen_space_web/app/layout.jsx

29 lines
622 B
React
Raw Normal View History

2024-01-03 01:07:16 +08:00
import "./globals.css";
export const metadata = {
2024-05-06 23:17:23 +08:00
title: "觅缘商城",
description: "让你喜欢的博主为你送上祝福",
keywords: ["商城", "祝福视频"],
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>
);
}