tiefen_space_h5/app/layout.js

39 lines
735 B
JavaScript
Raw Normal View History

2024-06-25 20:18:37 +08:00
import { Inter } from "next/font/google";
import "./globals.css";
2024-06-24 22:12:13 +08:00
2024-06-25 20:18:37 +08:00
const inter = Inter({ subsets: ["latin"] });
2024-06-24 22:12:13 +08:00
export const metadata = {
2024-06-26 19:46:31 +08:00
title: "铁粉空间",
description: "与Ta永不失联",
keywords: [
"铁粉空间",
"铁粉空间APP",
"社交",
"网红",
"粉丝",
"创作者",
"变现",
"平台",
"铁粉",
"空间",
],
};
export const viewport = {
width: "device-width",
initialScale: 1,
maximumScale: 1,
userScalable: 0,
2024-06-25 20:18:37 +08:00
};
2024-06-24 22:12:13 +08:00
export default function RootLayout({ children }) {
return (
2024-06-25 20:18:37 +08:00
<html
lang="zh-CN"
className="bg-[#07050A]"
data-prefers-color-scheme="dark"
>
2024-06-24 22:12:13 +08:00
<body className={inter.className}>{children}</body>
</html>
2024-06-25 20:18:37 +08:00
);
2024-06-24 22:12:13 +08:00
}