Skip to content

Commit

Permalink
Hide grammarly logo (#1256)
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriibudko authored Nov 25, 2024
1 parent a77f352 commit 50be70d
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 21 deletions.
19 changes: 12 additions & 7 deletions data/endorsements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -514,11 +514,16 @@ organizations:
name: Interac
url: https://www.interac.ca/en
logo: interac.png
- &gramarly
id: gramarly
name: Gramarly
url: https://app.grammarly.com/
logo: grammarly.png
#- &gramarly
# id: gramarly
# name: Gramarly
# url: https://app.grammarly.com/
# logo: grammarly.png
- &tech-dico
id: tech-dico
name: TechDico
url: https://www.techdico.com/
logo: logo_TechDico.png
- &ezassi
id: ezassi
name: Ezassi
Expand Down Expand Up @@ -870,7 +875,8 @@ sections:
organizations:
title: Companies who work with us
items:
- *gramarly
# - *gramarly
- *tech-dico
- *naver
- *nvidia
- *caktus
Expand All @@ -897,7 +903,6 @@ sections:
- *audemicr
- *naverTest
- *lean-library
- *tech-dico
- *oxisco
- *consensus
- *flowcite
Expand Down
6 changes: 4 additions & 2 deletions data/home.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,10 @@ users:
alt: "nvidia"
- img: /images/logos/anthropic.svg
alt: "anthropic"
- img: /images/logos/grammarly.svg
alt: "grammarly"
- img: /images/logos/logo_TechDico.png
alt: "TechDico"
# - img: /images/logos/grammarly.svg
# alt: "grammarly"
- img: /images/logos/lean.svg
alt: "lean"
- img: /images/logos/naver.svg
Expand Down
20 changes: 11 additions & 9 deletions pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,17 @@ const IndexPage = () => {
<section className={styles.carouselWrapper}>
<div className={styles.carouselItems}>
{item.userList.items.map((slide) => (
<img
className={classNames.use(styles.carouselItem, {
[styles.carouselItemUnset]: slide.full,
[styles.background]: slide.background,
})}
src={slide.img}
alt="logo"
key={slide.alt}
/>
<div className={styles.carouselItemWrapper}>
<img
className={classNames.use(styles.carouselItem, {
[styles.carouselItemUnset]: slide.full,
[styles.background]: slide.background,
})}
src={slide.img}
alt="logo"
key={slide.alt}
/>
</div>
))}
</div>
<div className={styles.linkWrapper}>
Expand Down
13 changes: 10 additions & 3 deletions pages/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,20 @@
display: flex;
justify-content: space-between;
gap: 35px;
align-items: center;
}
.carousel-item {
.carousel-item-wrapper {
border: 1px solid #b75400;
width: 212px;
background: #fff;
height: 104px;
display: flex;
flex-direction: column;
justify-content: center;
}
.carousel-item {
width: 212px;
max-height: 104px;
padding: 16px;
background: #fff;
}
.carousel-item-unset {
padding: 0;
Expand Down

0 comments on commit 50be70d

Please sign in to comment.