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

Add Waabi logo to landing page #946

Merged
merged 2 commits into from
Aug 15, 2023
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
1 change: 1 addition & 0 deletions cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ words:
- unchunked
- unindexed
- velodyne
- waabi
- webp
- zstandard
- zstd
Expand Down
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";
import WaabiDark from "./companies/waabi-white.svg";
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,
DarkModeLogo: WaabiDark,
},
];

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
Loading