43 lines
929 B
TypeScript
43 lines
929 B
TypeScript
|
|
import type { Metadata, Viewport } from 'next';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: {
|
||
|
|
default: '智管物业 - 物业管理SaaS专家',
|
||
|
|
template: '%s - 智管物业',
|
||
|
|
},
|
||
|
|
description:
|
||
|
|
'智管物业 - 让物业管理像发微信一样简单。提供物业缴费、报修管理、社区公告、业主服务等一站式物业管理小程序/SaaS解决方案。',
|
||
|
|
keywords: [
|
||
|
|
'物业管理软件',
|
||
|
|
'物业小程序',
|
||
|
|
'物业缴费系统',
|
||
|
|
'物业报修',
|
||
|
|
'社区管理',
|
||
|
|
'智慧物业',
|
||
|
|
'物业SaaS',
|
||
|
|
'业主服务',
|
||
|
|
],
|
||
|
|
icons: {
|
||
|
|
icon: '/favicon.ico',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export const viewport: Viewport = {
|
||
|
|
width: 'device-width',
|
||
|
|
initialScale: 1,
|
||
|
|
themeColor: '#312e81',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return (
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<body>{children}</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|