mirror of
https://github.com/joeseesun/wechat-radar.git
synced 2026-09-08 03:08:29 +09:00
20 lines
410 B
TypeScript
20 lines
410 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "微信雷达",
|
|
description: "本地优先的微信群聊情报看板",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN" className="h-full">
|
|
<body className="min-h-full">{children}</body>
|
|
</html>
|
|
);
|
|
}
|