20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Salon - 探索中国",
|
|
description: "加入数字游民社区,探索中国最适合远程工作的城市",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh">
|
|
<body className="antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|