douyintest/app/layout.jsx

19 lines
663 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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