+
+ {posts.map((post, i) => (
+
+ ))}
+
+
+ )
+}
diff --git a/src/components/mdx/BlogPosts/index.tsx b/src/components/mdx/BlogPosts/index.tsx
new file mode 100644
index 0000000..d25b9d0
--- /dev/null
+++ b/src/components/mdx/BlogPosts/index.tsx
@@ -0,0 +1 @@
+export * from './BlogPosts'
diff --git a/src/components/mdx/BlogPosts/style.module.scss b/src/components/mdx/BlogPosts/style.module.scss
new file mode 100644
index 0000000..d5b5096
--- /dev/null
+++ b/src/components/mdx/BlogPosts/style.module.scss
@@ -0,0 +1,19 @@
+.blogpostsWrapper {
+ .blogposts {
+ .blogpost {
+ background: none;
+ //border: 1px solid var(--ifm-color-gray-200);
+ p {
+ color: var(--ifm-color-gray-500);
+ }
+
+ .blogpostMeta {
+ margin-bottom: calc(var(--ifm-leading) / 2);
+ }
+
+ + .blogpost {
+ margin-top: var(--ifm-leading);
+ }
+ }
+ }
+}
diff --git a/src/components/mdx/TeamList/TeamList.tsx b/src/components/mdx/TeamList/TeamList.tsx
index 00467e7..1d00ef3 100644
--- a/src/components/mdx/TeamList/TeamList.tsx
+++ b/src/components/mdx/TeamList/TeamList.tsx
@@ -16,7 +16,6 @@ type TProps = {
export const TeamList = (props: TProps): JSX.Element => {
const team = useTeam('codex' as ELogosTeamNames)
- console.log(team)
const hiddenSidebar = globalStore.useSelector(selectHiddenSidebar)
return (
diff --git a/src/components/mdx/TeamList/style.module.scss b/src/components/mdx/TeamList/style.module.scss
index 1c56b1e..a40ec4a 100644
--- a/src/components/mdx/TeamList/style.module.scss
+++ b/src/components/mdx/TeamList/style.module.scss
@@ -1,22 +1,23 @@
.TeamList {
.TeamListContainer {
display: grid;
- grid-template-columns: 1fr 1fr;
+ grid-template-columns: 1fr 1fr 1fr;
grid-gap: 10px;
grid-column-gap: calc(0.7 * var(--ifm-global-spacing));
grid-row-gap: calc(0.6 * var(--ifm-global-spacing));
&.withSidebarHide {
- grid-template-columns: repeat(3, 1fr);
+ grid-template-columns: repeat(4, 1fr);
.memberCard {
- grid-template-rows: 320px 60px;
+ grid-template-rows: 220px 60px;
}
}
.memberCard {
box-shadow: none;
display: grid;
- grid-template-rows: 400px 60px;
+ //grid-template-rows: 400px 60px;
+ grid-template-rows: 270px 110px !important;
grid-column-gap: calc(0.7 * var(--ifm-global-spacing));
grid-row-gap: calc(0.6 * var(--ifm-global-spacing));
@@ -30,10 +31,9 @@
}
.memberCardCaption {
+ flex-direction: column;
+ gap: 10px !important;
border-radius: 8px;
- flex-direction: row;
- justify-content: space-between;
- gap: 40px;
h5 {
margin: 0;
@@ -41,11 +41,11 @@
.memberEmail {
color: var(--ifm-color-gray-500);
}
-
.memberSocials {
display: flex;
align-items: center;
opacity: 0.3;
+ height: 20px;
gap: calc(var(--ifm-spacing-horizontal) * 0.5);
}
}
@@ -67,11 +67,10 @@
}
.memberCardCaption {
- flex-direction: column !important;
gap: 10px !important;
.memberSocials {
- height: 30px;
- gap: 16px !important;
+ //height: 30px;
+ //gap: 16px !important;
opacity: 0.5 !important;
a {
width: 25px;
diff --git a/src/css/custom.scss b/src/css/custom.scss
index e591cea..ea45d31 100644
--- a/src/css/custom.scss
+++ b/src/css/custom.scss
@@ -78,7 +78,7 @@
--ifm-font-weight-base: var(--ifm-font-weight-normal);
--ifm-h1-font-size: 4rem;
- --ifm-h2-font-size: 3.5rem;
+ --ifm-h2-font-size: 2rem;
--ifm-h3-font-size: 1.25rem;
--ifm-h4-font-size: 1.15rem;
--ifm-h5-font-size: 1rem;
@@ -211,7 +211,6 @@
.sans {
font-family: var(--lgs-font-family-secondary);
- font-size: var(--ifm-font-size-secondary);
line-height: var(--ifm-line-height-secondary);
}
diff --git a/static/data/team.json b/static/data/team.json
index 43c5c13..2a4b287 100644
--- a/static/data/team.json
+++ b/static/data/team.json
@@ -50,7 +50,7 @@
"contact": {
"email": "leo@status.im",
"status": null,
- "github": null,
+ "github": "leobago",
"discord": "leobago#8071",
"gscholar": "vt5qgWoAAAAJ"
}
diff --git a/yarn.lock b/yarn.lock
index a9ea447..70d43e5 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2002,6 +2002,13 @@
dependencies:
defer-to-connect "^1.0.1"
+"@tryghost/content-api@^1.11.4":
+ version "1.11.4"
+ resolved "https://registry.yarnpkg.com/@tryghost/content-api/-/content-api-1.11.4.tgz#4a1afa6a7580eb414d82ce6bd3ca712126927fbc"
+ integrity sha512-1ShIj8i37rR/9gaenRiaGvPNAU3jAuvViD64mmVxE1cedXJjpqbaOLM8lFWaVuGUafDQrfo5tv57FN6ac51QeQ==
+ dependencies:
+ axios "^0.27.0"
+
"@trysound/sax@0.2.0":
version "0.2.0"
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
@@ -2629,6 +2636,11 @@ asap@~2.0.3:
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
+asynckit@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+ integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
+
at-least-node@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
@@ -2653,6 +2665,14 @@ axios@^0.25.0:
dependencies:
follow-redirects "^1.14.7"
+axios@^0.27.0:
+ version "0.27.2"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-0.27.2.tgz#207658cc8621606e586c85db4b41a750e756d972"
+ integrity sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==
+ dependencies:
+ follow-redirects "^1.14.9"
+ form-data "^4.0.0"
+
babel-loader@^8.2.5:
version "8.2.5"
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz#d45f585e654d5a5d90f5350a779d7647c5ed512e"
@@ -3095,6 +3115,13 @@ combine-promises@^1.1.0:
resolved "https://registry.yarnpkg.com/combine-promises/-/combine-promises-1.1.0.tgz#72db90743c0ca7aab7d0d8d2052fd7b0f674de71"
integrity sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==
+combined-stream@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+ dependencies:
+ delayed-stream "~1.0.0"
+
comma-separated-tokens@^1.0.0:
version "1.0.8"
resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
@@ -3517,6 +3544,11 @@ del@^6.1.1:
rimraf "^3.0.2"
slash "^3.0.0"
+delayed-stream@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+ integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
+
depd@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
@@ -3663,6 +3695,11 @@ dot-prop@^5.2.0:
dependencies:
is-obj "^2.0.0"
+dotenv@^16.0.3:
+ version "16.0.3"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07"
+ integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==
+
duplexer3@^0.1.4:
version "0.1.5"
resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e"
@@ -4081,7 +4118,7 @@ flux@^4.0.1:
fbemitter "^3.0.0"
fbjs "^3.0.1"
-follow-redirects@^1.0.0, follow-redirects@^1.14.7:
+follow-redirects@^1.0.0, follow-redirects@^1.14.7, follow-redirects@^1.14.9:
version "1.15.2"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
@@ -4105,6 +4142,15 @@ fork-ts-checker-webpack-plugin@^6.5.0:
semver "^7.3.2"
tapable "^1.0.0"
+form-data@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
+ integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.8"
+ mime-types "^2.1.12"
+
forwarded@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
@@ -5317,7 +5363,7 @@ mime-types@2.1.18:
dependencies:
mime-db "~1.33.0"
-mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
+mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
version "2.1.35"
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==