proxyraye-nextjs/src/app/[locale]/layout.tsx

21 lines
497 B
TypeScript

import "@/styles/globals.scss"
export default function RootLayout({
children,
params: {locale}
}: Readonly<{
children: React.ReactNode;
params: {locale: string};
}>) {
return (
<html lang={locale}>
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Proxy Raye: un proxy per XVideos basato su PornInvidious</title>
</head>
<body>{children}</body>
</html>
);
}