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.
Changes Made:
Moved relevant components from the
routes
folder to a newcomponents
folder within thelib
directory for better organisation.Created an
images
folder in thestatic
directory and updated references to images in the code to use relative paths instead of hardcoding image addresses in thesrc
.Details:
1. Component Organization:
Before: Components were scattered across the
routes
folder.After: Components are now organized in a dedicated
components
folder within the lib directory.2. Image Handling:
Before: Image addresses were hardcoded in the
src
attribute, making it less maintainable.After: Images are now stored in the
static/images
folder, and references have been updated to use relative paths, improving maintainability and allowing for easier changes.Additional Notes
The changes aim to enhance project structure, making it more modular and maintainable.
Please review the updated code to ensure there are no regressions or issues.