-
Notifications
You must be signed in to change notification settings - Fork 12
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
b7b48b2
commit a89446f
Showing
2 changed files
with
49 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Anchor, Center,Group,Stack,Text, Title } from "@mantine/core" | ||
import { FC } from "react" | ||
|
||
const WordsOfCaution: FC = () => { | ||
return ( | ||
<Group justify="center"> | ||
<Stack align="center" w="60%"> | ||
<Title mt="lg">🚨Words of caution to our early user adopters🚨</Title> | ||
<Text> | ||
Bug Buster is in alpha stage and this means that its development is heavily | ||
active thus changes (new features, improvements and fixes) can come anytime. | ||
</Text> | ||
<Text> | ||
In regards to security, althought Bug Buster is built on top of Cartesi Rollups SDK | ||
and its development has been done with care, we cannot guarantee that the platform | ||
is free of bugs or vulnerabilities at this stage. | ||
</Text> | ||
<Text> | ||
To avoid any potential loss of funds, we recommend that you use the platform with scaution, and avoid using it with large amounts of funds. | ||
</Text> | ||
<Text> | ||
Finally, this is an exciting phase of development and your feedback really matters! | ||
Let’s build together a innovative, safer and user-friendly open source bug bounty platform for the web3 industry? 🌟 | ||
</Text> | ||
<Text> | ||
Feel free to explore, ask questions, and provide feedback on our <Anchor href="https://discord.com/channels/600597137524391947/1166042819782258788" underline="never">Discord channel</Anchor> or mention our <Anchor href="https://x.com/BugBusterApp" underline="never">X account</Anchor>. | ||
</Text> | ||
</Stack> | ||
</Group> | ||
) | ||
} | ||
|
||
export default WordsOfCaution; |