2024-08-14 16:33:40 -04:00
|
|
|
import '@/app/globals.css'
|
2023-12-30 05:56:40 -05:00
|
|
|
import type { Metadata } from 'next'
|
2023-12-30 04:00:54 -05:00
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2024-08-14 16:33:40 -04:00
|
|
|
title: 'Tom-to-Speech',
|
|
|
|
description: '',
|
2023-12-30 04:00:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default function RootLayout({
|
2024-08-14 16:33:40 -04:00
|
|
|
children,
|
2023-12-30 04:00:54 -05:00
|
|
|
}: {
|
2024-08-14 16:33:40 -04:00
|
|
|
children: React.ReactNode
|
2023-12-30 04:00:54 -05:00
|
|
|
}) {
|
2024-08-14 16:33:40 -04:00
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<body>
|
|
|
|
{children}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
)
|
|
|
|
}
|