Files
role-user/src/app/layout.tsx
T
2026-06-02 14:46:39 +08:00

34 lines
720 B
TypeScript

import type { Metadata, Viewport } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "员工工作台",
description: "门店员工日常任务、排班、公告和个人中心",
manifest: "/manifest.webmanifest",
icons: {
icon: "/icon.svg",
apple: "/icon.svg"
},
appleWebApp: {
capable: true,
title: "员工工作台",
statusBarStyle: "default"
}
};
export const viewport: Viewport = {
width: "device-width",
initialScale: 1,
maximumScale: 1,
themeColor: "#ffffff"
};
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang="zh-CN">
<body>{children}</body>
</html>
);
}