Spaces:
Sleeping
Sleeping
Alex Amari Claude Opus 4.6 commited on
Commit ·
fb7f4b1
1
Parent(s): 52286ad
Add quick-link buttons for FA info, FAQ, and insurance enrollment
Browse filesSimple HTML links styled as buttons below the resources banner.
Placeholder URLs pointing to OHA and Access Health CT for now.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -1004,6 +1004,29 @@ hr {
|
|
| 1004 |
margin: 0;
|
| 1005 |
}
|
| 1006 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1007 |
/* ---------- MOBILE ---------- */
|
| 1008 |
@media (max-width: 640px) {
|
| 1009 |
.gradio-container { padding: 0 12px !important; }
|
|
@@ -1080,6 +1103,15 @@ def create_interface():
|
|
| 1080 |
'</div>'
|
| 1081 |
)
|
| 1082 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1083 |
with gr.Row(elem_classes="lang-row"):
|
| 1084 |
lang_toggle = gr.Radio(
|
| 1085 |
choices=["English", "Espa\u00f1ol"],
|
|
|
|
| 1004 |
margin: 0;
|
| 1005 |
}
|
| 1006 |
|
| 1007 |
+
/* ---------- QUICK LINKS ---------- */
|
| 1008 |
+
.quick-links {
|
| 1009 |
+
display: flex;
|
| 1010 |
+
gap: 12px;
|
| 1011 |
+
flex-wrap: wrap;
|
| 1012 |
+
margin: 0 0 16px 0;
|
| 1013 |
+
}
|
| 1014 |
+
.quick-links a {
|
| 1015 |
+
display: inline-block;
|
| 1016 |
+
background: #0046AD !important;
|
| 1017 |
+
color: #FFFFFF !important;
|
| 1018 |
+
text-decoration: none !important;
|
| 1019 |
+
font-size: 18px;
|
| 1020 |
+
font-weight: 500;
|
| 1021 |
+
padding: 12px 24px;
|
| 1022 |
+
border-radius: 4px;
|
| 1023 |
+
transition: background 0.15s ease;
|
| 1024 |
+
}
|
| 1025 |
+
.quick-links a:hover {
|
| 1026 |
+
background: #003478 !important;
|
| 1027 |
+
text-decoration: none !important;
|
| 1028 |
+
}
|
| 1029 |
+
|
| 1030 |
/* ---------- MOBILE ---------- */
|
| 1031 |
@media (max-width: 640px) {
|
| 1032 |
.gradio-container { padding: 0 12px !important; }
|
|
|
|
| 1103 |
'</div>'
|
| 1104 |
)
|
| 1105 |
|
| 1106 |
+
# Quick-link buttons
|
| 1107 |
+
gr.HTML(
|
| 1108 |
+
'<div class="quick-links">'
|
| 1109 |
+
'<a href="https://portal.ct.gov/oha/Financial-Assistance" target="_blank" rel="noopener">What is Financial Assistance?</a>'
|
| 1110 |
+
'<a href="https://portal.ct.gov/oha" target="_blank" rel="noopener">FAQ</a>'
|
| 1111 |
+
'<a href="https://www.accesshealthct.com" target="_blank" rel="noopener">I Need Help Enrolling in Health Insurance</a>'
|
| 1112 |
+
'</div>'
|
| 1113 |
+
)
|
| 1114 |
+
|
| 1115 |
with gr.Row(elem_classes="lang-row"):
|
| 1116 |
lang_toggle = gr.Radio(
|
| 1117 |
choices=["English", "Espa\u00f1ol"],
|