26 lines
492 B
TypeScript
26 lines
492 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
default: "抖歪 - 记录当下时代",
|
|
template: "%s - 抖歪",
|
|
},
|
|
description: "记录当下时代的精彩瞬间",
|
|
icons: {
|
|
icon: "/favicon.png",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body className="antialiased">{children}</body>
|
|
</html>
|
|
);
|
|
}
|