-
Notifications
You must be signed in to change notification settings - Fork 3
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
e929291
commit b01cc1f
Showing
5 changed files
with
77 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,24 @@ | ||
#kd { | ||
display: flex; | ||
} | ||
|
||
/** | ||
* KDAO hero | ||
* @name {Hero} | ||
*/ | ||
#kdh { | ||
max-width: 1080px; | ||
padding: 40px 60px; | ||
border-radius: 22px; | ||
margin: 30px auto; | ||
/** | ||
* #8e2de2 -> rgb(142, 45, 226) | ||
*/ | ||
background: | ||
radial-gradient(circle at 20% 20%, rgba(144, 205, 244, 0.1) 0%, rgba(255, 255, 255, 0) 40%), | ||
radial-gradient(circle at 70% 10%, rgba(99, 179, 237, 0.1) 0%, rgba(255, 255, 255, 0) 60%), | ||
radial-gradient(circle at 60% 90%, rgba(49, 130, 206, 0.4) 0%, rgba(255, 255, 255, 0) 40%), | ||
radial-gradient(circle at 10% 80%, rgba(66, 153, 225, 0.1) 0%, rgba(255, 255, 255, 0) 40%), | ||
radial-gradient(circle at 0% 55%, rgba(163, 109, 211, 0.2) 0%, rgba(255, 255, 255, 0) 50%), | ||
radial-gradient(circle at 75% 60%, rgba(99, 55, 186, 0.3) 0%, rgba(255, 255, 255, 0) 40%); | ||
} |
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,3 @@ | ||
import Cüzdan from "/birim/cüzdan/birim"; | ||
import "/birim/dil/birim"; | ||
|
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,43 @@ | ||
import Script from "kastro:./sayfa.js"; | ||
import Css from "./sayfa.css"; | ||
import Başlık from "/birim/başlık/birim"; | ||
import Favicon from "/birim/icon.svg"; | ||
import Lato400 from "/birim/lato/l400.ttf"; | ||
import Lato700 from "/birim/lato/l700.ttf"; | ||
import OrtakCss from "/birim/ortakcss/birim"; | ||
import { ChainId } from "/lib/crosschain/chains"; | ||
|
||
/** @const {!Array<ChainId>} */ | ||
const Chains = [ | ||
ChainId.x1, | ||
]; | ||
|
||
/** @const {!Object<ChainId, I18nString>} */ | ||
const ChainNotes = { | ||
[ChainId.x1]: { tr: "Ana ağ", en: "Treasury chain" }, | ||
}; | ||
|
||
/** @const {ChainId} */ | ||
const DefaultChain = ChainId.x1; | ||
|
||
const KDAO = ({ Lang }) => ( | ||
<html lang={Lang}> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<Lato400 shared /> | ||
<Lato700 shared /> | ||
<title>KimlikDAO | KDAO</title> | ||
<Favicon raster={32} rel="icon" /> | ||
<OrtakCss /> | ||
<Css /> | ||
<Script Chains={Chains} DefaultChain={DefaultChain} /> | ||
</head> | ||
<body> | ||
<Başlık href="/" DefaultChain={DefaultChain} Chains={Chains} ChainNotes={ChainNotes} /> | ||
<div id={Css.Hero}>Graph</div> | ||
</body> | ||
</html > | ||
); | ||
|
||
export default KDAO; |
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