This commit is contained in:
2026-06-24 15:59:04 +02:00
commit 510945b733
32 changed files with 7009 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { Providers } from '@/Providers'
import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Meme Search Client'
}
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
return (
<html lang='en'>
<body>
<Providers>
{children}
</Providers>
</body>
</html>
)
}