diff --git a/app/layout.tsx b/app/layout.tsx index 0681b9764..05c417c45 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -41,7 +41,11 @@ function Meta() { ); } -export default function RootLayout({ children }: { children: React.ReactNode }): JSX.Element { +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { return (
@@ -58,13 +62,8 @@ export default function RootLayout({ children }: { children: React.ReactNode }): rel="stylesheet" > - - {/* 在这里添加51la站长统计代码 */} - - {children} ); } -