setup: route group

This commit is contained in:
Mahyar Khanbolooki
2025-07-31 19:13:24 +03:30
parent 118daf7cc0
commit 52b5b880d0
25 changed files with 169 additions and 111 deletions
+13
View File
@@ -0,0 +1,13 @@
'use client';
import React from 'react'
function DialogsLayout({ children }: { children: React.ReactNode }) {
return (
<main className='h-full w-full bg-container lg:bg-background pt-4 pb-6 px-6'>
{children}
</main>
)
}
export default DialogsLayout