mirror of
https://github.com/woodchen-ink/random-api-go.git
synced 2025-07-18 05:42:01 +08:00
25 lines
431 B
TypeScript
25 lines
431 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Random-Api 随机文件API",
|
|
description: "随机图API, 随机视频等 ",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body
|
|
className={`antialiased`}
|
|
>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|