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
346 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>
);
}