-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'FearlessTech:main' into network-page-wireframe
- Loading branch information
Showing
12 changed files
with
87 additions
and
186 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
|
||
|
||
In `src/components/ResourcesComponents/styledResourcePopup.jsx` | ||
under `const Popup = styled.div` | ||
```jsx | ||
margin: auto; | ||
margin-top: 4%; | ||
``` |
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
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
File renamed without changes.
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
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,103 +1,44 @@ | ||
import React from "react"; | ||
import { AiOutlineCloseCircle } from "react-icons/ai"; | ||
|
||
import ResourceCheckBoxes from "../ResourceCheckBoxes"; | ||
import { | ||
Popup, | ||
HR, | ||
Top, | ||
Content, | ||
SubContent, | ||
LeftCon, | ||
RightCon, | ||
Bottom, | ||
LeftB, | ||
RightB, | ||
Switch, | ||
RPUHeading, | ||
OrgInfo, | ||
ResourceDescription, | ||
ResourcesCheckBoxes, | ||
} from "./styledResourcePopup"; | ||
|
||
export const ResourcePopup = () => { | ||
export const ResourcePopup = (props) => { | ||
return ( | ||
<Popup> | ||
<Top> | ||
<p>Resource alerts</p> | ||
<AiOutlineCloseCircle /> | ||
</Top> | ||
<HR /> | ||
<Content> | ||
<SubContent> | ||
<LeftCon> | ||
<h4>Resources</h4> | ||
<h6>Maine</h6> | ||
<p>Frequency: Daily via email and notification</p> | ||
<p>Get notified of similar Resources: Yes</p> | ||
</LeftCon> | ||
<RightCon> | ||
<img | ||
src="https://cdn-icons-png.flaticon.com/128/1659/1659682.png" | ||
alt="" | ||
/> | ||
<img | ||
src="https://cdn-icons-png.flaticon.com/128/1345/1345823.png" | ||
alt="" | ||
/> | ||
</RightCon> | ||
</SubContent> | ||
<SubContent> | ||
<LeftCon> | ||
<h4>resource at India</h4> | ||
<h6>India</h6> | ||
<p>Frequency: Daily via email and notification</p> | ||
<p>Get notified of similar Resources: Yes</p> | ||
</LeftCon> | ||
<RightCon> | ||
<img | ||
src="https://cdn-icons-png.flaticon.com/128/1659/1659682.png" | ||
alt="" | ||
/> | ||
<img | ||
src="https://cdn-icons-png.flaticon.com/128/1345/1345823.png" | ||
alt="" | ||
/> | ||
</RightCon> | ||
</SubContent> | ||
<SubContent> | ||
<LeftCon> | ||
<h4>resource at India</h4> | ||
<h6>India</h6> | ||
<p>Frequency: Daily via email and notification</p> | ||
<p>Get notified of similar Resources: Yes</p> | ||
</LeftCon> | ||
<RightCon> | ||
<img | ||
src="https://cdn-icons-png.flaticon.com/128/1659/1659682.png" | ||
alt="" | ||
/> | ||
<img | ||
src="https://cdn-icons-png.flaticon.com/128/1345/1345823.png" | ||
alt="" | ||
/> | ||
</RightCon> | ||
</SubContent> | ||
</Content> | ||
<HR /> | ||
<Bottom> | ||
<LeftB> | ||
<h4>Resources recommendations</h4> | ||
<h6> | ||
Based on your Resources alerts, activity, and profile. | ||
<span className="blue">Learn more.</span>{" "} | ||
</h6> | ||
</LeftB> | ||
<RightB> | ||
{/* <span className='gray'>On</span> */} | ||
<Switch> | ||
<input /> | ||
<span></span> | ||
</Switch> | ||
</RightB> | ||
</Bottom> | ||
<HR /> | ||
<button>Done</button> | ||
</Popup> | ||
<> | ||
{props.showModal === "open" && ( | ||
<Popup> | ||
<Top> | ||
<p>Resource alerts</p> | ||
<AiOutlineCloseCircle /> | ||
</Top> | ||
<OrgInfo> | ||
<RPUHeading></RPUHeading> | ||
<img src="/images/user.svg" alt="" /> | ||
<Content></Content> | ||
</OrgInfo> | ||
<ResourceDescription> | ||
<RPUHeading></RPUHeading> | ||
<Content></Content> | ||
</ResourceDescription> | ||
<ResourcesCheckBoxes> | ||
<RPUHeading></RPUHeading> | ||
<Content> | ||
<ResourceCheckBoxes /> | ||
</Content> | ||
</ResourcesCheckBoxes> | ||
|
||
<button>Done</button> | ||
</Popup> | ||
)} | ||
</> | ||
); | ||
}; |
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
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
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
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