Files
GEOAgentArticleOptimizer/src/app/layout.tsx
T

15 lines
322 B
TypeScript

import "./globals.css";
export const metadata = {
title: "GEO Agent Article Optimizer",
description: "Local article optimization and QA workflow",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="zh-CN">
<body>{children}</body>
</html>
);
}