Add partner logos to ODP website#61
Open
dhillonk wants to merge 2 commits intoOpenDevicePartnership:mainfrom
Open
Add partner logos to ODP website#61dhillonk wants to merge 2 commits intoOpenDevicePartnership:mainfrom
dhillonk wants to merge 2 commits intoOpenDevicePartnership:mainfrom
Conversation
jerrysxie
approved these changes
Apr 3, 2026
There was a problem hiding this comment.
Pull request overview
Adds a new “Our Partners” section to the ODP website homepage to display partner logos.
Changes:
- Introduces a new
PartnersGridLeptos component with a static list of partner names/logos. - Renders
PartnersGridon the home page between the main hero section and documentation/training. - Adds partner logo SVG assets under
public/images/partners/.
Reviewed changes
Copilot reviewed 3 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/pages/home.rs |
Imports and renders the new partners grid on the homepage layout. |
src/components/partners_grid.rs |
New component defining partner data and rendering a responsive logo grid. |
src/components/mod.rs |
Exposes the new partners_grid module. |
public/images/partners/microsoft_surface.svg |
Adds Microsoft Surface partner logo asset. |
public/images/partners/nxp.svg |
Adds NXP partner logo asset. |
public/images/partners/tweede_golf.svg |
Adds Tweede Golf partner logo asset. |
public/images/partners/cix.svg |
Adds CIX partner logo asset. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+23
to
+24
| logo: "/images/partners/cix.svg" | ||
| } |
There was a problem hiding this comment.
PARTNERS array has invalid Rust syntax: the last Partner entry is missing trailing commas (after the logo field and after the struct literal). As written this won't compile; add the missing commas (and let rustfmt format the array).
Suggested change
| logo: "/images/partners/cix.svg" | |
| } | |
| logo: "/images/partners/cix.svg", | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new "Our Partners" section to the homepage, displaying partner logos in a responsive grid. The main changes include adding a new
PartnersGridcomponent, registering it in the module system, and integrating it into the homepage layout.New Partners Section:
PartnersGridcomponent that displays a grid of partner logos with names, using a responsive layout for different screen sizes. (src/components/partners_grid.rs)partners_gridmodule in the components module system. (src/components/mod.rs)Homepage Integration:
PartnersGridcomponent into the homepage file. (src/pages/home.rs)PartnersGridcomponent into the homepage layout, placing it between the main content and the documentation/training section. (src/pages/home.rs)