This repository was archived by the owner on Apr 28, 2026. It is now read-only.
OPS-832: Marketing Goverment Page#1726
Merged
Merged
Conversation
Contributor
Greptile OverviewGreptile SummaryThis PR adds a new marketing page for government use cases at Key Changes:
Issues Found:
Confidence Score: 3/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram
participant User
participant Browser
participant Server
participant GovernmentPage
participant ViewComponents
participant CommonComponents
User->>Browser: Navigate to /use-cases/government
Browser->>Server: Request page
Server->>GovernmentPage: Render government_use_case_page()
GovernmentPage->>ViewComponents: Call hero()
ViewComponents->>CommonComponents: Use left_content(), right_content()
CommonComponents-->>ViewComponents: Return hero content
ViewComponents-->>GovernmentPage: Return hero section
GovernmentPage->>ViewComponents: Call social_proof()
ViewComponents->>CommonComponents: Use logos_carousel(LOGOS)
CommonComponents-->>ViewComponents: Return social proof content
ViewComponents-->>GovernmentPage: Return social proof section
GovernmentPage->>ViewComponents: Call text_section_1()
ViewComponents->>CommonComponents: Use text_section()
CommonComponents-->>ViewComponents: Return text content
ViewComponents-->>GovernmentPage: Return text section
GovernmentPage->>ViewComponents: Call features_1()
ViewComponents->>CommonComponents: Use feature_card()
CommonComponents-->>ViewComponents: Return feature cards
ViewComponents-->>GovernmentPage: Return features section
GovernmentPage->>ViewComponents: Call text_section_2()
GovernmentPage->>ViewComponents: Call features_2()
GovernmentPage->>ViewComponents: Call text_section_3()
GovernmentPage->>ViewComponents: Call stats()
GovernmentPage->>ViewComponents: Call faq()
GovernmentPage->>ViewComponents: Call final_section()
Note over GovernmentPage,ViewComponents: quotes() exists but is NOT called
GovernmentPage-->>Server: Complete page render
Server-->>Browser: Return HTML/JS
Browser-->>User: Display government page
|
Contributor
Additional Comments (1)
Prompt To Fix With AIThis is a comment left during a code review.
Path: pcweb/pages/use_cases/government/views/quotes.py
Line: 1:34
Comment:
this entire file is unused - `quotes()` is not imported or called in `__init__.py`. The finance page includes quotes between text sections, but government page omits it. Either import and use this component, or remove the file entirely.
How can I resolve this? If you propose a fix, please make it concise. |
tgberkeley
reviewed
Jan 13, 2026
| from pcweb.pages.use_cases.common.features_2 import feature_card | ||
|
|
||
|
|
||
| def features_2() -> rx.Component: |
Collaborator
There was a problem hiding this comment.
have this section be in bullet points
tgberkeley
approved these changes
Jan 17, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
No description provided.