Skip to content

Commit

Permalink
🖼️ Add KPass image to README
Browse files Browse the repository at this point in the history
  • Loading branch information
KimlikDAO-bot committed Feb 2, 2025
1 parent f427489 commit 4a2650b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 15 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

# 👋 Introduction

<img align="right" width="280" height="280" src="https://kimlikdao.org/KPASS.svg" style="border-radius:10px;box-shadow:0px 2px 10px rgb(0 0 0 / 15%);">

Using the KimlikDAO dApp, you can mint your KPass by interacting with the
KimlikDAO network and inscribe it on one of the blockchains we support
(such as Ethereum, Arbitrum, Mina, etc).
Expand Down
File renamed without changes.
11 changes: 4 additions & 7 deletions components/footer/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,12 @@
}
}

/**
* Alt dizin kaydol kutusu
*/
#SubscribeBox {
padding: 0 20px;
}

/**
* Alt dizin logo
* Logo in the subscribe box
*/
#Logo {
display: flex;
Expand All @@ -44,7 +41,7 @@
}

/**
* Brand mark metni
* Brand mark text
*/
#BrandMark {
margin-top: 20px;
Expand All @@ -55,7 +52,7 @@
}

/**
* Kaydol metni
* Text prompting the user to subscribe to the newsletter
*/
#SubscribeText {
margin: 50px 0 12px;
Expand All @@ -64,7 +61,7 @@
}

/**
* Kaydol birimi
* Dom id for the Subscribe stateless component.
* @export
*/
#Subscribe {
Expand Down
2 changes: 1 addition & 1 deletion components/footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SubscribeBox = () => (
}}</span>
<div id={Css.SubscribeText}>{{
en: "SUBSCRIBE TO THE KIMLIKDAO NEWSLETTER",
tr: "KİMLİKDAO BÜLTEN'E KAYDOLUN"
tr: "KİMLİKDAO BÜLTENE KAYDOLUN"
}}</div>
<Subscribe id={Css.Subscribe} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { I18nString } from "/lib/util/i18n";
/** @enum {string} */
const JointCss = css`
@media (max-width: 820px) {
.Link, #${LangPicker.Css.LangPicker} {
.Link, #${LangPicker.Css.Root} {
display: none;
}
}`;
Expand Down
2 changes: 1 addition & 1 deletion components/langPicker/LangPicker.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** @export */
#LangPicker {
#Root {
position: relative;
margin: auto 40px auto 5px;
}
Expand Down
8 changes: 4 additions & 4 deletions components/langPicker/LangPicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ const langChanged = (event) => {
const li = /** @type {!HTMLLIElement} */(targetElem.closest("li"));

/** @const {LangCode} */
const newLang = /** @type {LangCode} */(li.id.slice(Css.LangPicker.length));
const newLang = /** @type {LangCode} */(li.id.slice(Css.Root.length));
if (newLang != dom.Lang) {
document.cookie = `l=${newLang};path=/;domain=.${HostUrl.slice(8)};SameSite=Strict;max-age=${1e6}`;
window.location.href = Route[newLang] + window.location.hash;
}
};

const LangPicker = () => (
<div id={Css.LangPicker}>
<div id={Css.Root}>
<Css />
<LangButton
controlsDropdown={LangDropdown}
class={HeaderCss.Link} href="javascript:">{{ en: "EN", tr: "TR" }}
</LangButton>
<LangDropdown nodisplay onClick={langChanged}>
<li id={Css.LangPicker + LangCode.EN}>
<li id={Css.Root + LangCode.EN}>
<EnFlag width={16} height={16} /> English
</li>
<li id={Css.LangPicker + LangCode.TR}>
<li id={Css.Root + LangCode.TR}>
<TrFlag width={16} height={16} /> Türkçe
</li>
</LangDropdown>
Expand Down
2 changes: 1 addition & 1 deletion landing/Reports.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import LandingCss from "./page.css";
import Feb25 from "/components/blog/2025.02/birim";
import Feb25 from "/components/blog/2025.02/Feb25";
import SharedCss from "/components/sharedCss/SharedCss.css";

const Reports = () => (
Expand Down

0 comments on commit 4a2650b

Please sign in to comment.