Files
wehub-resource-sync 05fcd08057
Deploy GitBook to 9router.github.io / build-deploy (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:21:01 +08:00

22 lines
553 B
JavaScript

import { DOCS_CONFIG } from "@/constants/docsConfig";
import "./globals.css";
export const metadata = {
title: DOCS_CONFIG.title,
description: DOCS_CONFIG.description,
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
</head>
<body className="bg-[#FCFBF9] text-[#6B7280]">
{children}
</body>
</html>
);
}