Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

Commit eec6e74

Browse files
committed
bullet points
1 parent ef23167 commit eec6e74

2 files changed

Lines changed: 52 additions & 7 deletions

File tree

pcweb/pages/use_cases/common/features_2.py

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22
import reflex_ui as ui
33

44

5-
def feature_card(icon: str, stat: str, title: str, description: str) -> rx.Component:
5+
def feature_card(
6+
icon: str,
7+
stat: str,
8+
title: str,
9+
description: str,
10+
items: list[str] | None = None,
11+
class_name: str = "",
12+
) -> rx.Component:
613
return rx.el.div(
714
ui.icon(
815
icon, class_name="text-m-violet-9 dark:text-m-violet-10 shrink-0 size-5"
@@ -16,5 +23,17 @@ def feature_card(icon: str, stat: str, title: str, description: str) -> rx.Compo
1623
description,
1724
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-2",
1825
),
19-
class_name="flex flex-col items-start p-10",
26+
rx.el.ul(
27+
*[
28+
rx.el.li(
29+
item,
30+
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium mt-1",
31+
)
32+
for item in items
33+
],
34+
class_name="text-m-slate-11 dark:text-m-slate-9 text-sm font-medium list-disc list-inside mt-2",
35+
)
36+
if items
37+
else None,
38+
class_name=ui.cn("flex flex-col items-start p-10", class_name),
2039
)

pcweb/pages/use_cases/government/views/features_2.py

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,51 @@ def features_2() -> rx.Component:
99
"WebDesign01Icon",
1010
"Internal Government Dashboards",
1111
"Track & Monitor Programs",
12-
"Build program performance dashboards, budgeting and spend oversight tools, policy impact analysis, and operations and service delivery tracking.",
12+
"Gain real-time visibility into program effectiveness, resource allocation, and service delivery with customizable dashboards.",
13+
items=[
14+
"Program performance dashboards",
15+
"Budgeting and spend oversight tools",
16+
"Policy impact analysis",
17+
"Operations and service delivery tracking",
18+
],
19+
class_name="lg:border-b",
1320
),
1421
feature_card(
1522
"ArtificialIntelligence04Icon",
1623
"AI Assistants for Public Servants",
1724
"Empower Your Teams",
18-
"Create RAG chatbots over legislation and regulations, internal knowledge assistants, caseworker and analyst copilots, and research and document analysis tools.",
25+
"Equip your workforce with AI-powered tools to navigate complex regulations and enhance decision-making.",
26+
items=[
27+
"RAG chatbots over legislation and regulations",
28+
"Internal knowledge assistants",
29+
"Caseworker and analyst copilots",
30+
"Research and document analysis tools",
31+
],
32+
class_name="lg:border-b",
1933
),
2034
feature_card(
2135
"FlowConnectionIcon",
2236
"Case, Permit & Workflow Systems",
2337
"Streamline Operations",
24-
"Develop case management tools, review and approval workflows, compliance and inspection apps, and grant and funding administration systems.",
38+
"Modernize administrative processes with tailored applications that reduce bottlenecks and improve transparency.",
39+
items=[
40+
"Case management tools",
41+
"Review and approval workflows",
42+
"Compliance and inspection apps",
43+
"Grant and funding administration systems",
44+
],
2545
),
2646
feature_card(
2747
"TestTube02Icon",
2848
"Research & National Lab Applications",
2949
"Support Scientific Work",
30-
"Build scientific data visualization, experiment tracking and analysis, secure model exploration tools, and internal research portals.",
50+
"Accelerate scientific discovery with purpose-built tools for data analysis, collaboration, and secure research environments.",
51+
items=[
52+
"Scientific data visualization",
53+
"Experiment tracking and analysis",
54+
"Secure model exploration tools",
55+
"Internal research portals",
56+
],
3157
),
32-
class_name="grid lg:grid-cols-4 grid-cols-1 mx-auto w-full max-w-[64.19rem] lg:border-x border-slate-3 relative overflow-hidden border-t lg:divide-x divide-slate-3 max-lg:divide-y lg:border-b",
58+
class_name="grid lg:grid-cols-2 grid-cols-1 mx-auto w-full max-w-[64.19rem] lg:border-x border-slate-3 relative overflow-hidden border-t lg:divide-x divide-slate-3 max-lg:divide-y lg:border-b",
3359
)

0 commit comments

Comments
 (0)