hermes-web/app/layout.tsx

21 lines
371 B
TypeScript

import '@/app/globals.css'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Tom-to-Speech',
description: '',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
)
}