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