-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from Xperienced-Tekie/wakilat-branch
page structuring
- Loading branch information
Showing
2 changed files
with
77 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,78 @@ | ||
import React from 'react' | ||
'use client'; | ||
|
||
import ChatListLightmode from '@/components/ChatListLightMode'; | ||
import ChatListDarkmode from '@/components/ChatListDarkmode'; | ||
import P2ChatSearchDarkmode from '@/components/P2ChatSearchDarkmode'; | ||
// import P2ChatSearchLightmode from '@/components/P2ChatSearchDarkmode'; | ||
import ChatSearchDarkmode from '@/components/ChatSearchDarkmode'; | ||
import ChatSearchLightmode from '@/components/ChatSearchLightmode'; | ||
import AIChatDarkmode from '@/components/AIChatDarkmode'; | ||
import P2AIChatDarkmode from '@/components/P2AIChatDarkmode'; | ||
import AIChatLightmode from '@/components/AIChatLightmode'; | ||
import P2AIChatLightmode from '@/components/P2AIChatLightmode'; | ||
import ChatDarkmode from '@/components/ChatDarkmode'; | ||
import ChatLightmode from '@/components/ChatLightmode'; | ||
import ChatImg from '@/components/ChatImg'; | ||
import ChatVid from '@/components/ChatVid'; | ||
|
||
const Chat = () => { | ||
return ( | ||
<div> | ||
Chat Page | ||
<ChatSearchLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
{/* <P2ChatSearchLightmode /> */} | ||
|
||
<div className="my-44"></div> | ||
<P2ChatSearchDarkmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatSearchDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<P2ChatSearchDarkmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatDarkmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatListLightmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatListDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<ChatLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<P2AIChatDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<AIChatDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<P2AIChatLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<AIChatLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<ChatImg /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<ChatVid /> | ||
</div> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
|
||
export default Chat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,9 @@ | ||
'use client'; | ||
import React from 'react' | ||
|
||
import ChatListLightmode from '@/components/ChatListLightMode'; | ||
import ChatListDarkmode from '@/components/ChatListDarkmode'; | ||
import P2ChatSearchDarkmode from '@/components/P2ChatSearchDarkmode'; | ||
// import P2ChatSearchLightmode from '@/components/P2ChatSearchDarkmode'; | ||
import ChatSearchDarkmode from '@/components/ChatSearchDarkmode'; | ||
import ChatSearchLightmode from '@/components/ChatSearchLightmode'; | ||
import AIChatDarkmode from '@/components/AIChatDarkmode'; | ||
import P2AIChatDarkmode from '@/components/P2AIChatDarkmode'; | ||
import AIChatLightmode from '@/components/AIChatLightmode'; | ||
import P2AIChatLightmode from '@/components/P2AIChatLightmode'; | ||
import ChatDarkmode from '@/components/ChatDarkmode'; | ||
import ChatLightmode from '@/components/ChatLightmode'; | ||
import ChatImg from '@/components/ChatImg'; | ||
import ChatVid from '@/components/ChatVid'; | ||
|
||
export default function Home() { | ||
const Homepage = () => { | ||
return ( | ||
<div> | ||
<ChatSearchLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
{/* <P2ChatSearchLightmode /> */} | ||
|
||
|
||
<div className="my-44"></div> | ||
<P2ChatSearchDarkmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatSearchDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<P2ChatSearchDarkmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatDarkmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatListLightmode /> | ||
<div className="my-44"></div> | ||
|
||
<ChatListDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<ChatLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<P2AIChatDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<AIChatDarkmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<P2AIChatLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<AIChatLightmode /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<ChatImg /> | ||
|
||
<div className="my-44"></div> | ||
|
||
<ChatVid /> | ||
</div> | ||
); | ||
<div>Home</div> | ||
) | ||
} | ||
|
||
export default Homepage |