cvsa/packages/next/app/layout.tsx
2025-05-22 03:15:07 +08:00

26 lines
571 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import React from "react";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app"
};
export default function RootLayout({
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN">
<head>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>V档案馆</title>
</head>
<body className="min-h-screen flex flex-col">{children}</body>
</html>
);
}