24 lines
701 B
TypeScript
24 lines
701 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import ThemeProvider from "./components/ThemeProvider";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "深圳|同城活动·技能交换·副业沙龙",
|
|
description: "技能交换、副业沙龙茶话会,认识同城新朋友。公开场地,填表报名,无需注册。",
|
|
keywords: "深圳活动,技能交换,副业沙龙,同城活动,loft民宿",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh" suppressHydrationWarning>
|
|
<body className="antialiased">
|
|
<ThemeProvider>{children}</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|