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 = {
|
2024-07-31 21:03:53 +08:00
|
|
|
|
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>
|
|
|
|
|
);
|
|
|
|
|
}
|