Skip to content

Commit

Permalink
Merge pull request #22 from Xperienced-Tekie/wakilat-branch
Browse files Browse the repository at this point in the history
page structuring
  • Loading branch information
MarysamuelPel authored Mar 7, 2024
2 parents db5b6c3 + 8f2ad1d commit 97e4893
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 77 deletions.
75 changes: 71 additions & 4 deletions client/app/chat/page.js
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
79 changes: 6 additions & 73 deletions client/app/page.js
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

0 comments on commit 97e4893

Please sign in to comment.