22 lines
452 B
TypeScript
22 lines
452 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Auto Virtual Tryon Admin",
|
|
description: "Operations console for virtual try-on workflows.",
|
|
};
|
|
|
|
type RootLayoutProps = {
|
|
children: ReactNode;
|
|
};
|
|
|
|
export default function RootLayout({ children }: RootLayoutProps) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|