-
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
b01cc1f
commit 1944109
Showing
26 changed files
with
140 additions
and
103 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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
flex-wrap: wrap; | ||
margin: 0 auto; | ||
max-width: 1200px; | ||
padding: 0 20px; | ||
padding: 20px; | ||
} | ||
|
||
/** | ||
|
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,8 +1,9 @@ | ||
import { Description, Title } from "./opengraph.jsx"; | ||
import { HostUrl } from "/crate"; | ||
|
||
export default () => (<> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta name="twitter:title" content={Title} /> | ||
<meta name="twitter:description" content={Description} /> | ||
<meta name="twitter:image" content="https://kimlikdao.org/KPASS.svg" /> | ||
<meta name="twitter:image" content={`${HostUrl}/KPASS.svg`} /> | ||
</>); |
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,5 @@ | ||
import Cüzdan from "/birim/cüzdan/birim"; | ||
import "/birim/cüzdan/sağMenü"; | ||
import "/birim/dil/birim"; | ||
|
||
export { Cüzdan }; |
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 |
---|---|---|
|
@@ -44,6 +44,7 @@ | |
outline: 0; | ||
position: absolute; | ||
top: 53px; | ||
transition: opacity 0.2s; | ||
width: 380px; | ||
z-index: 20; | ||
} | ||
|
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,12 @@ | ||
import Cüzdan from "./birim.js"; | ||
import dom from "/lib/util/dom"; | ||
|
||
const Düğmeler = Cüzdan.SağPanel.children; | ||
|
||
Düğmeler[2].onclick = () => | ||
window.location.href = "//join.kimlikdao.org/#sa-ambassador1"; | ||
Düğmeler[3].onclick = () => | ||
window.location.href = "//kimlikdao.org/" + dom.i18n({ tr: "oyla", en: "vote" }); | ||
Düğmeler[4].onclick = () => | ||
window.location.href = "//kimlikdao.org/" + dom.i18n({ tr: "iptal", en: "revoke" }); | ||
Düğmeler[5].onclick = () => Cüzdan.kopar(); |
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,23 @@ | ||
import AmbassadorResmi from "/birim/cüzdan/img/ambassador.svg"; | ||
import DeğiştirResmi from "/birim/cüzdan/img/external-link.svg"; | ||
import İptalResmi from "/birim/cüzdan/img/iptal.svg"; | ||
import VoteResmi from "/birim/cüzdan/img/vote.svg"; | ||
|
||
export default () => <> | ||
<li><AmbassadorResmi inline />{{ | ||
en: " Ambassador program", | ||
tr: " Ambassador ol" | ||
}}</li> | ||
<li><VoteResmi width={16} height={16} />{{ | ||
en: " Vote", | ||
tr: " Oy kullan" | ||
}}</li> | ||
<li><İptalResmi inline />{{ | ||
en: " Revoke KPass", | ||
tr: " İptal işlemleri" | ||
}}</li> | ||
<li><DeğiştirResmi inline />{{ | ||
en: " Switch wallet", | ||
tr: " Cüzdan değiştir" | ||
}}</li> | ||
</> |
Oops, something went wrong.