add: chat page

This commit is contained in:
Mahyar Khanbolooki
2025-07-19 20:53:17 +03:30
parent 902623e196
commit 0e0345dd8b
2 changed files with 88 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
'use client';
import React from 'react'
type Props = object
function ChatIndex({ }: Props) {
return (
<section className='h-full pb-8'>
TODO
</section>
)
}
export default ChatIndex