douyintest/app/layout.jsx

19 lines
663 B
React
Raw Normal View History

2024-07-11 21:23:12 +08:00
import "./globals.css";
2024-07-24 19:44:27 +08:00
import { Suspense } from "react";
2024-07-11 21:23:12 +08:00
export const metadata = {
title: "瑞文国际标准智商测试",
description:
"国际瑞文智商测试Raven's Progressive Matrices专注于评估个体的抽象推理能力和逻辑思维能力。由英国心理学家John C. Raven于1938年首次开发测试设计评估智力水平特别是在不依赖于语言和文化背景的情况下。",
2024-07-11 21:23:12 +08:00
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className="box-border min-h-screen flex flex-col items-center">
2024-07-24 19:44:27 +08:00
<Suspense>{children}</Suspense>
2024-07-11 21:23:12 +08:00
</body>
</html>
);
}