Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide grammarly logo #1256

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading