Files
warehouse-query/app/layout.tsx
Misaka_Company 086ad62614 feat: implement warehouse query dashboard with live SQL Server data
Convert the Demo UI component into a working Next.js TypeScript page
that fetches live data from the API routes with debounced search,
loading/error states, server-side filtering, sorting, and pagination.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-04 09:47:55 +08:00

20 lines
481 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "成品仓库数据查询系统",
description: "Finished Goods Warehouse Query System — 成品库存实时查询",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN" className="h-full antialiased">
<body className="min-h-full flex flex-col">{children}</body>
</html>
);
}