diff --git a/README.md b/README.md
index 1dbfb5a..4abf1ce 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,8 @@
# 👋 Introduction
+
+
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).
diff --git a/components/blog/2025.02/birim.jsx b/components/blog/2025.02/Feb25.jsx
similarity index 100%
rename from components/blog/2025.02/birim.jsx
rename to components/blog/2025.02/Feb25.jsx
diff --git a/components/footer/Footer.css b/components/footer/Footer.css
index 61c824c..cabaa80 100644
--- a/components/footer/Footer.css
+++ b/components/footer/Footer.css
@@ -26,15 +26,12 @@
}
}
-/**
- * Alt dizin kaydol kutusu
- */
#SubscribeBox {
padding: 0 20px;
}
/**
- * Alt dizin logo
+ * Logo in the subscribe box
*/
#Logo {
display: flex;
@@ -44,7 +41,7 @@
}
/**
- * Brand mark metni
+ * Brand mark text
*/
#BrandMark {
margin-top: 20px;
@@ -55,7 +52,7 @@
}
/**
- * Kaydol metni
+ * Text prompting the user to subscribe to the newsletter
*/
#SubscribeText {
margin: 50px 0 12px;
@@ -64,7 +61,7 @@
}
/**
- * Kaydol birimi
+ * Dom id for the Subscribe stateless component.
* @export
*/
#Subscribe {
diff --git a/components/footer/Footer.jsx b/components/footer/Footer.jsx
index 024f343..a15cfd2 100644
--- a/components/footer/Footer.jsx
+++ b/components/footer/Footer.jsx
@@ -17,7 +17,7 @@ const SubscribeBox = () => (
}}
{{
en: "SUBSCRIBE TO THE KIMLIKDAO NEWSLETTER",
- tr: "KÄ°MLÄ°KDAO BÃœLTEN'E KAYDOLUN"
+ tr: "KİMLİKDAO BÜLTEN’E KAYDOLUN"
}}
diff --git a/components/header/Header.jsx b/components/header/Header.jsx
index c29d07d..bae12d8 100644
--- a/components/header/Header.jsx
+++ b/components/header/Header.jsx
@@ -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;
}
}`;
diff --git a/components/langPicker/LangPicker.css b/components/langPicker/LangPicker.css
index 103dba4..22db3df 100644
--- a/components/langPicker/LangPicker.css
+++ b/components/langPicker/LangPicker.css
@@ -1,5 +1,5 @@
/** @export */
-#LangPicker {
+#Root {
position: relative;
margin: auto 40px auto 5px;
}
diff --git a/components/langPicker/LangPicker.jsx b/components/langPicker/LangPicker.jsx
index 5c79350..6a1d85e 100644
--- a/components/langPicker/LangPicker.jsx
+++ b/components/langPicker/LangPicker.jsx
@@ -23,7 +23,7 @@ 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;
@@ -31,17 +31,17 @@ const langChanged = (event) => {
};
const LangPicker = () => (
-
+
-
+
 English
-
+
 Türkçe
diff --git a/landing/Reports.jsx b/landing/Reports.jsx
index 69c41a1..b51c055 100644
--- a/landing/Reports.jsx
+++ b/landing/Reports.jsx
@@ -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 = () => (