fix: remove deprecated unDraw SVG assets (#1112) - #1125
Merged
Merged
Conversation
added 2 commits
September 19, 2026 21:22
Replace the three unDraw (undraw.co) Category X SVG illustrations used on the homepage feature cards with project-drawn, Apache-2.0 assets in the Fesod brand palette, complying with ASF 3rd-party license policy. - add website/static/img/index/fesod_quick.svg (fast/performance) - add website/static/img/index/fesod_simple.svg (simple API) - add website/static/img/index/fesod_bigfile.svg (large files) - update HomepageFeatures/index.js requires - delete undraw_spreadsheet.svg, undraw_programming.svg, undraw_files.svg
Apply one shared visual language to fesod_quick/simple/bigfile: uniform brand disk + consistent primary(#14824B)/accent(#00B95F)/highlight(#69CD37) colors, centered composition and top-right outlined emphasis element, so the three cards look like one aligned set.
alaahong
marked this pull request as ready for review
September 19, 2026 13:36
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.
Fixes #1112
Summary
The homepage feature cards use three SVG illustrations from unDraw
(
undraw.co, artist Katerina Limpitsouni). These are from the deprecatedunDraw Category X set — each file carries the attribution attributes
artist="Katerina Limpitsouni" source="https://undraw.co/"— and are notverifiably ASF-compatible / attribution-compliant for redistribution.
This PR removes those third-party assets and replaces them with
project-drawn, Apache-2.0 illustrations in the Fesod brand palette
(#14824B / #00B95F / #69CD37), consistent with the existing
logo.svg.Changes
website/static/img/index/(all Apache-2.0, licensed headers):fesod_quick.svg— fast-charging power ring + bolt (feature: 快速 / performance)fesod_simple.svg—<fesod />code card + checkmark circle (feature: 简单 / simple API)fesod_bigfile.svg— stacked documents (feature: 大文件 / large files)website/src/components/HomepageFeatures/index.js— 3requirepaths.undraw_spreadsheet.svg,undraw_programming.svg,undraw_files.svg.The three unDraw files were the only reference points in the repository
(search verified) — no other file references them.
Licensing
No third-party assets remain; therefore no addition to
LICENSE/NOTICEis required.
Verification
HomepageFeatures/index.jsreferences the new files; noundrawreference remains.website/static assets and the feature component — no impact on release artifacts.