Skip to content

Commit

Permalink
Add waabi logo to MCAP
Browse files Browse the repository at this point in the history
  • Loading branch information
esthersweon committed Aug 10, 2023
1 parent 75e3cab commit 83b7f95
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 13 deletions.
40 changes: 40 additions & 0 deletions website/src/icons/companies/waabi-color.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions website/src/icons/companies/waabi-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions website/src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import ROSLight from "./companies/ros-color.svg";
import ROSDark from "./companies/ros-white.svg";
import TangramLight from "./companies/tangram-color.svg";
import TangramDark from "./companies/tangram-white.svg";
import WaabiLight from "./companies/waabi-color.svg";

Check failure on line 13 in website/src/icons/index.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Waabi)

Check failure on line 13 in website/src/icons/index.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (waabi)
import WaabiDark from "./companies/waabi-white.svg";

Check failure on line 14 in website/src/icons/index.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Waabi)

Check failure on line 14 in website/src/icons/index.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (waabi)
import DrawerEnvelope from "./drawer-envelope.svg";
import Robot from "./robot.svg";
import ShipmentPackage from "./shipment-package.svg";
Expand Down Expand Up @@ -44,6 +46,11 @@ const Logos = [
LightModeLogo: TangramLight,
DarkModeLogo: TangramDark,
},
{
href: "https://waabi.ai/",
LightModeLogo: WaabiLight,

Check failure on line 51 in website/src/icons/index.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Waabi)
DarkModeLogo: WaabiDark,

Check failure on line 52 in website/src/icons/index.ts

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Waabi)
},
];

export {
Expand Down
15 changes: 2 additions & 13 deletions website/src/pages/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,26 +150,15 @@
.logoGrid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 2rem 3rem;
gap: 3rem 3rem;
text-align: center;
}

@media (min-width: 640px) {
.logoGrid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (min-width: 996px) {
.logoGrid {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
}

.logoIcon {
display: inline-block;
height: auto;
width: 100%;
max-height: 50px;
margin: auto;
}

Expand Down

0 comments on commit 83b7f95

Please sign in to comment.