chore: scaffold local optimizer app

This commit is contained in:
Codex
2026-06-21 23:42:37 +08:00
parent 73f47a0f9a
commit 160fa52586
15 changed files with 9240 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
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>
);
}