Merge pull request #2222 from GSA/2072-benefits-studio-about-page

This commit is contained in:
Beverly Nguyen
2024-12-24 11:16:43 -08:00
committed by GitHub
5 changed files with 63 additions and 6 deletions

View File

@@ -343,6 +343,13 @@ def send_files_by_email():
)
@main.route("/studio")
def studio():
return render_template(
"views/studio.html",
)
# --- Redirects --- #

View File

@@ -483,7 +483,7 @@ def send_one_off_step(service_id, template_id, step_index):
link_to_upload=(
request.endpoint == "main.send_one_off_step" and step_index == 0
),
errors=form.errors if form.errors else None
errors=form.errors if form.errors else None,
)

View File

@@ -32,6 +32,9 @@
<li class="usa-identifier__required-links-item">
<a href="https://www.gsa.gov/about-us" class="usa-identifier__required-link">About GSA</a>
</li>
<li class="usa-identifier__required-links-item">
<a href="/studio" class="usa-identifier__required-link">About the Public Benefits Studio</a>
</li>
<li class="usa-identifier__required-links-item">
<a href="https://www.gsa.gov/website-information/accessibility-aids"
class="usa-identifier__required-link">Accessibility support</a>
@@ -58,16 +61,20 @@
</ul>
</div>
</nav>
<section class="usa-identifier__section usa-identifier__section--usagov"
<section class="usa-identifier__section"
aria-label="Github Repos">
<div class="usa-identifier__container">
<div class="usa-identifier__required-links-item">
Find us on Github:
</div>
<ul>
<li><a href="https://github.com/gsa/notifications-admin" class="usa-identifier__required-link">Notify.gov Admin repo</a></li>
<li><a href="https://github.com/gsa/notifications-api" class="usa-identifier__required-link">Notify.gov API repo</a></li>
</ul>
<ul class="usa-identifier__required-links-list">
<li class="usa-identifier__required-links-item">
<a href="https://github.com/gsa/notifications-admin" class="usa-identifier__required-link">Notify.gov Admin repo</a>
</li>
<li class="usa-identifier__required-links-item">
<a href="https://github.com/gsa/notifications-api" class="usa-identifier__required-link">Notify.gov API repo</a>
</li>
</ul>
</div>
</section>

View File

@@ -0,0 +1,42 @@
{% extends "base.html" %}
{% set page_title = "About the Public Benefits Studio" %}
{% block per_page_title %}{{page_title}}{% endblock %}
{% block content_column_content %}
<section class="usa-prose">
<h1>{{page_title}}</h1>
<p>The Benefits Studio is a product accelerator inside the federal government.
We collaborate with benefits programs and the people they serve to build and
scale shared tools that reduce burden within the social safety net.
</p>
<p>
As a part of GSAs <a href="https://tts.gsa.gov/">Technology Transformation Services (TTS)</a>, the Studio is uniquely
positioned to work between and across agencies and programs, to make it easier and
cheaper for programs with the same challenges to use the same tools.
</p>
<p>
We focus on benefits programs first, because we believe solving problems for people
who face the highest challenges when interacting with the government will result in
solutions that serve everyone else well, too.
</p>
<p class="margin-bottom-4">
<strong>The Studios first product offering is <a href="/">Notify.gov</a></strong>, a text message service that helps government agencies at all levels more effectively communicate with the people they serve.
</p>
<p class="font-body-lg">Were currently exploring two new product spaces:</p>
<ul>
<li><strong>Better Document Submission:</strong> How might we enable simple digital submission and document processing for benefits agencies?</li>
<li><strong>Automated Enrollment Checks:</strong> How might we improve how enrollment information is shared across benefit programs, especially where enrollment in one program provides partial or full eligibility for another program?</li>
</ul>
<p class="margin-bottom-4">If youre interested in providing feedback on where we should go next, reach us at <a href="mailto:public-benefits-studio@gsa.gov">public-benefits-studio@gsa.gov.</a></p>
<p class="font-body-lg">Read more about the Studio:</p>
<ul>
<li><a href="https://digital.gov/2023/02/07/collaborate-with-the-tts-public-benefits-studio/">Collaborate with the Public Benefits Studio</a> — Digital.gov, Feb 2023</li>
<li><a href="https://federalnewsnetwork.com/it-modernization/2023/10/gsa-considers-text-messages-as-new-frontier-for-better-customer-experience/">GSA considers text messages as new frontier for better customer experience</a> — Federal News Network, Oct 2023</li>
<li><a href="https://www.gsa.gov/blog/2024/03/18/notifygov-is-helping-government-meet-families-where-they-are">Notify.gov is helping government meet families where they are</a> — GSA.gov blog, Mar 2024</li>
</ul>
</section>
{% endblock %}

View File

@@ -217,6 +217,7 @@ EXCLUDED_ENDPOINTS = tuple(
"sign_in",
"sign_out",
"start_job",
"studio",
"support",
"suspend_service",
"template_history",