-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5af1c70
commit 7129663
Showing
5 changed files
with
164 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import React from 'react'; | ||
import { Wrapper } from '../../Dashboard/Profile/ProfileElements'; | ||
import { VictimHelpWrapper, ScamSteps, ResourcesSection } from './VictimhelpElements'; | ||
|
||
const VictimHelp = () => { | ||
return ( | ||
<Wrapper> | ||
<VictimHelpWrapper> | ||
<ScamSteps> | ||
<h1>Dealing with a Scam: What to Do Next</h1> | ||
<p> | ||
If you've fallen victim to a scam, it's important to take immediate action to mitigate | ||
the impact and report the incident. Follow these steps to navigate through the aftermath | ||
of being scammed: | ||
</p> | ||
<ol> | ||
<li> | ||
<strong>Stay Calm:</strong> Take a deep breath. It's essential to stay calm and focused | ||
to address the situation effectively. | ||
</li> | ||
<li> | ||
<strong>Document Details:</strong> Write down all details related to the scam, | ||
including the date, time, method of contact, and any information about the scammer. | ||
</li> | ||
<li> | ||
<strong>Secure Your Accounts:</strong> Change passwords for your online accounts, | ||
especially banking and email, to prevent further unauthorized access. | ||
</li> | ||
<li> | ||
<strong>Report to Authorities:</strong> File a complaint with the relevant authorities. | ||
In India, you can use the National Cyber Crime Reporting Portal.{' '} | ||
<a href="https://cybercrime.gov.in" target="_blank" rel="noopener noreferrer" style={{ color: '#0069da' }}> | ||
Report Cyber Crime | ||
</a> | ||
. | ||
</li> | ||
<li> | ||
<strong>Inform Your Bank:</strong> If the scam involved financial transactions, contact | ||
your bank immediately to report the incident and take necessary actions. | ||
</li> | ||
<li> | ||
<strong>Be Vigilant:</strong> Keep an eye on your accounts and report any suspicious | ||
activity promptly. | ||
</li> | ||
</ol> | ||
</ScamSteps> | ||
<ResourcesSection> | ||
<h2>Helpful Information</h2> | ||
<p> | ||
It's crucial to seek support during such challenging times. Reach out to the following | ||
resources for assistance: | ||
</p> | ||
<ul> | ||
<li> | ||
<strong>National Cyber Crime Reporting Portal:</strong>{' '} | ||
<a href="https://cybercrime.gov.in" target="_blank" rel="noopener noreferrer"> | ||
https://cybercrime.gov.in | ||
</a> | ||
</li> | ||
<li> | ||
<strong>Helpline Number:</strong> 1930 (National Cyber Crime Reporting Portal) | ||
</li> | ||
<li> | ||
<strong>Local Police:</strong> Visit your nearest police station to file a formal | ||
complaint. | ||
</li> | ||
<li> | ||
<strong>Online Support Communities:</strong> Connect with others who have experienced | ||
similar situations for advice and emotional support. | ||
</li> | ||
</ul> | ||
</ResourcesSection> | ||
|
||
</VictimHelpWrapper> | ||
</Wrapper> | ||
); | ||
}; | ||
|
||
export default VictimHelp; |
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,81 @@ | ||
import styled from 'styled-components'; | ||
|
||
const basicTextColor = '#ffffff'; // Set your basic text color | ||
|
||
export const VictimHelpWrapper = styled.div` | ||
max-width: 800px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
`; | ||
|
||
export const ScamSteps = styled.div` | ||
margin-bottom: 20px; | ||
h1 { | ||
font-size: 28px; | ||
margin-bottom: 15px; | ||
color: ${basicTextColor}; | ||
} | ||
p { | ||
font-size: 16px; | ||
line-height: 1.5; | ||
color: ${basicTextColor}; | ||
} | ||
ol { | ||
list-style-type: decimal; | ||
padding-left: 20px; | ||
margin-top: 10px; | ||
} | ||
li { | ||
font-size: 16px; | ||
margin-bottom: 10px; | ||
strong { | ||
font-weight: bold; | ||
color: ${basicTextColor}; | ||
} | ||
} | ||
`; | ||
|
||
export const ResourcesSection = styled.div` | ||
h2 { | ||
font-size: 24px; | ||
margin-bottom: 15px; | ||
color: ${basicTextColor}; | ||
} | ||
p { | ||
font-size: 16px; | ||
line-height: 1.5; | ||
color: ${basicTextColor}; | ||
} | ||
ul { | ||
list-style-type: disc; | ||
padding-left: 20px; | ||
margin-top: 10px; | ||
} | ||
li { | ||
font-size: 16px; | ||
margin-bottom: 10px; | ||
strong { | ||
font-weight: bold; | ||
color: ${basicTextColor}; | ||
} | ||
a { | ||
color: #007bff; | ||
text-decoration: none; | ||
&:hover { | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
`; |
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