douyin-archive/app/layout.tsx
2026-04-28 17:11:42 +08:00

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>
);
}