Spaces:
Sleeping
Sleeping
File size: 660 Bytes
d629cd4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import ClientLayout from "./client-layout";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "课程订阅平台",
description: "学习并与我们的优质课程一起成长",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN">
<body className={`${inter.className} min-h-screen bg-gray-50 flex flex-col antialiased`}>
<ClientLayout>
{children}
</ClientLayout>
</body>
</html>
);
}
|