初始化管理后台仓库

This commit is contained in:
2025-12-29 10:41:23 +08:00
commit f9a8df0fe5
27 changed files with 2481 additions and 0 deletions

16
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,16 @@
import type { Metadata } from "next";
import type { ReactNode } from "react";
import "./globals.css";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout(props: { children: ReactNode }) {
return (
<html lang="zh-CN">
<body>{props.children}</body>
</html>
);
}