Files
NianAIGC/app/layout.tsx
2026-05-29 10:26:02 +08:00

19 lines
483 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Metadata } from "next";
import { AppShell } from "@/components/app-shell";
import "./globals.css";
export const metadata: Metadata = {
title: "智念AIGC平台",
description: "智念AIGC平台统一创作图片、视频、局部重绘与智能超清。"
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="zh-CN">
<body>
<AppShell>{children}</AppShell>
</body>
</html>
);
}