Files
vtuber/apps/web/src/app/layout.tsx

20 lines
342 B
TypeScript

import React from 'react';
import './globals.css';
export const metadata = {
title: 'VTuber Web',
description: 'VTuber Live Commerce Frontend Demo',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-Hant">
<body>{children}</body>
</html>
);
}