ChatGPT-Next-Web/app/auth/layout.tsx
2024-06-28 17:53:42 +08:00

24 lines
565 B
TypeScript

// app\auth\layout.tsx
import styles from "./layout.module.scss";
export default function AuthLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<head>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="manifest" href="/site.webmanifest"></link>
<script src="/serviceWorkerRegister.js" defer></script>
</head>
<body className={styles.container}>{children}</body>
</html>
);
}