You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
367 B

2 months ago
import "./globals.css";
import React from "react";
export const metadata = {
1 month ago
title: "汇龙兴达 | 臻影智造",
description: "中国领先的智能影像系统提供商",
2 months ago
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="zh-CN">
1 month ago
<body>
2 months ago
{children}
</body>
</html>
);
}