You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
376 B
19 lines
376 B
import "./globals.css";
|
|
import React from "react";
|
|
|
|
export const metadata = {
|
|
title: "LOG 官网",
|
|
description: "Next.js + Tailwind 示例站点",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body className="bg-gray-50 text-gray-900">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
|
|
|
|
|