generated from zama-ai/fhevm-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
48ee45a
commit 1742667
Showing
9 changed files
with
91 additions
and
28 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
.About__list dt { | ||
font-weight: bold; | ||
} | ||
.About__list dd { | ||
margin-left: 0; | ||
margin-bottom: 15px; | ||
} |
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,39 @@ | ||
import { Back, Subtitle, Title } from '../../../common-ui'; | ||
|
||
import './About.css'; | ||
|
||
export const About = () => { | ||
return ( | ||
<div> | ||
<Back /> | ||
<Title>About</Title> | ||
<p> | ||
Cipher Bomb is a blockchain game crafted using{' '} | ||
<a href="https://zama.ai/fhevm" title="fhEVM website"> | ||
the fhEVM | ||
</a> | ||
. Developed in Solidity, Cipher Bomb leverages the encrypted types provided by the fhEVM to secure player cards | ||
and utilizes the encrypted PRNG to distribute cards to each player on-chain. For a deeper understanding, you can | ||
explore{' '} | ||
<a href="https://github.com/immortal-tofu/cipherbomb" title="Cipherbomb repository"> | ||
the contract's source code | ||
</a> | ||
. | ||
</p> | ||
|
||
<Subtitle>Credits</Subtitle> | ||
<dl className="About__list"> | ||
<dt>Contract & dapp</dt> | ||
<dd> | ||
<a href="https://twitter.com/immortofu">immortal tofu</a> | ||
</dd> | ||
<dt>Graphics</dt> | ||
<dd> | ||
<a href="https://www.instagram.com/brice.eljeji/">Brice Eljeji</a> | ||
</dd> | ||
<dt>Music</dt> | ||
<dd>Eternal Lupin</dd> | ||
</dl> | ||
</div> | ||
); | ||
}; |
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 @@ | ||
export * from './About'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './components/Home'; | ||
export * from './components/Rules'; | ||
export * from './components/About'; |