feat(project): 项目完结
This commit is contained in:
26
frontend/src/app/layout.tsx
Normal file
26
frontend/src/app/layout.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import type { Metadata } from "next";
|
||||
import "./globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Agent-Draw-IO",
|
||||
description: "智能体交互绘图 @小傅哥",
|
||||
};
|
||||
|
||||
import Script from "next/script";
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<head>
|
||||
<Script src="/env-config.js" strategy="beforeInteractive" />
|
||||
</head>
|
||||
<body className="antialiased">
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user