-
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.
Add chat message some design and make a pop up on chat page
- Loading branch information
1 parent
45cfef6
commit 49b17a5
Showing
3 changed files
with
43 additions
and
16 deletions.
There are no files selected for viewing
19 changes: 18 additions & 1 deletion
19
app/components/random_chat_components/CategoriesAndGenderDetailsPopup.tsx
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,7 +1,24 @@ | ||
import React from "react"; | ||
import Image from "next/image"; | ||
import CategoriesDropdown from "@/app/components/my_account_components/CategoriesDropdown"; | ||
|
||
const CategoriesAndGenderDetailsPopup = () => { | ||
return <div></div>; | ||
return ( | ||
<div className="absolute flex flex-col bg-white rounded p-4"> | ||
<div className="flex justify-around"> | ||
<Image src="/female.png" height={20} width={20} alt="profile-picture" /> | ||
<Image src="/male.png" height={20} width={20} alt="profile-picture" /> | ||
<Image | ||
src="/both_gender.png" | ||
height={20} | ||
width={20} | ||
alt="profile-picture" | ||
/> | ||
</div> | ||
<CategoriesDropdown category="Interest" /> | ||
<CategoriesDropdown category="Location" /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CategoriesAndGenderDetailsPopup; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.