9dd36f308f
- Home page with navigation - Projects page with task list table - Task status/priority/progress display - Real-time API integration - Responsive layout and styling
20 lines
391 B
TypeScript
20 lines
391 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "小虾 SaaS - 项目推进器",
|
|
description: "AI 视频自动化剪辑系统 - 项目管理",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|