├── .github ├── ISSUE_TEMPLATE │ └── backlog-item-template.md └── workflows │ ├── content.yml │ └── ssr.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── README.md ├── cms ├── 404.json ├── __example-settings.json ├── content │ ├── footer │ │ ├── 10x-in-the-wild.json │ │ ├── every-solution-starts-as-an-idea.json │ │ └── we-started-as-an-idea-too.json │ ├── page │ │ ├── designing-success.json │ │ ├── fueling-innovation.json │ │ ├── homepage.json │ │ ├── making-each-dollar-count.json │ │ ├── news-updates.json │ │ ├── our-challenge-to-you.json │ │ ├── our-impact.json │ │ ├── privacy-policy.json │ │ ├── process.json │ │ ├── projects.json │ │ └── reports.json │ ├── post │ │ ├── 2020-lightning-talks.json │ │ ├── 2021-selected-projects.json │ │ ├── 2022-round-one-submission-period-priorities.json │ │ ├── 2022-selected-projects.json │ │ ├── 2023-idea-submission.json │ │ ├── 2023-selected-projects.json │ │ ├── 2023-submission-period.json │ │ ├── government-reinvention-venture-capitalist-mindset.json │ │ ├── investment-approach.json │ │ ├── policy-as-code.json │ │ ├── public-sector-innovation-winners.json │ │ ├── scaling-10x.json │ │ └── transforming-technology-agile-investments.json │ ├── project │ │ ├── benefits-eligibility-resource.json │ │ ├── combating-bias-in-ai-ml-implementation.json │ │ ├── de-risking-government-technology-field-guides.json │ │ ├── devops-for-privacy-offices.json │ │ ├── eligibility-apis.json │ │ ├── equity-centered-design-for-ai-an.json │ │ ├── finding-grant-funded-products.json │ │ ├── guide-to-pra.json │ │ ├── identity-alerts-for-government.json │ │ ├── inclusion-for-rulemaking.json │ │ ├── low-code-no-code-service-delivery.json │ │ ├── multilingual-glossary-tool.json │ │ ├── shared-components-for-museums-and-libraries.json │ │ ├── site-scanner.json │ │ ├── untangling-climate-resources.json │ │ └── us-data-federation.json │ └── report │ │ ├── fy17-impact-report.json │ │ ├── fy18-impact-report.json │ │ ├── fy19-impact-report.json │ │ ├── fy20-impact-report.json │ │ ├── fy21-impact-report.json │ │ └── fy22-impact-report.json ├── menus │ └── global.json └── redirects.json ├── federalist.json ├── jsconfig.json ├── package.json ├── public ├── 10x-lg-transparent.png ├── 404.json ├── admin │ ├── config.yml │ └── index.html ├── browserconfig.xml ├── favicon.ico ├── images │ ├── 10x_FY17_Year_in_Review_Report.pdf │ ├── 10x_FY18_Year_in_Review_Report.pdf │ ├── 10x_FY19_Year_in_Review_Report.pdf │ ├── 10x_FY20_Impact_Report.pdf │ ├── 10x_fy20_impact_report.pdf │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ ├── gsa-logo-w100.png │ ├── gsa-logo.svg │ └── menu │ │ ├── about.svg │ │ ├── home.svg │ │ ├── ideas.svg │ │ ├── process.svg │ │ └── projects.svg ├── index.html ├── manifest.json └── robots.txt ├── runIndex.js └── src ├── app ├── ContentModule │ ├── ContentModule.test.js │ ├── context │ │ ├── contentAPI.js │ │ ├── index.js │ │ ├── ssr.js │ │ └── test.js │ └── index.js ├── MenuModule │ ├── MenuModule.test.js │ ├── context │ │ ├── index.js │ │ ├── menuAPI.js │ │ ├── ssr.js │ │ └── test.js │ └── index.js ├── SettingsModule │ ├── SettingsModule.test.js │ ├── context │ │ ├── index.js │ │ ├── settingsAPI.js │ │ ├── ssr.js │ │ └── test.js │ └── index.js ├── app.test.js └── index.js ├── components ├── Banner │ ├── Banner.test.js │ ├── icon-dot-gov.svg │ ├── icon-https.svg │ ├── index.js │ └── us_flag_small.png ├── Break │ └── index.js ├── Card │ ├── Card.test.js │ └── index.js ├── Chart │ └── index.js ├── Date │ ├── Date.test.js │ └── index.js ├── Grid │ ├── Grid.test.js │ └── index.js ├── Icon │ ├── Icon.test.js │ └── index.js ├── List │ ├── List.test.js │ └── index.js ├── Loading │ ├── Loading.test.js │ ├── index.js │ └── loading.png ├── Logo │ ├── Logo.test.js │ ├── index.js │ ├── logo1.svg │ ├── logo2.svg │ └── logo3.svg └── Select │ ├── Select.test.js │ └── index.js ├── features ├── Button │ ├── Button.test.js │ └── index.js ├── ContentList │ ├── ContentList.test.js │ └── index.js ├── GhostWriter │ ├── GhostWriter.test.js │ └── index.js ├── Layout │ ├── Layout.test.js │ ├── index.js │ └── templates │ │ ├── ByTheNumbersGraphic │ │ └── index.js │ │ ├── Callout │ │ ├── Callout.test.js │ │ └── index.js │ │ ├── Cards │ │ ├── Cards.test.js │ │ └── index.js │ │ ├── Links │ │ ├── Links.test.js │ │ └── index.js │ │ ├── List │ │ ├── List.test.js │ │ └── index.js │ │ ├── PhaseDescription │ │ ├── PhaseDescription.test.js │ │ └── index.js │ │ ├── PhaseGraphic │ │ ├── PhaseGraphic.test.js │ │ └── index.js │ │ ├── PhaseStatus │ │ ├── PhaseStatus.test.js │ │ └── index.js │ │ ├── PostList │ │ ├── PostCard.js │ │ ├── PostList.test.js │ │ └── index.js │ │ ├── ReasonForRejection │ │ ├── ReasonForRejection.test.js │ │ └── index.js │ │ ├── ReportBudgetTable │ │ └── index.js │ │ ├── ReportTable │ │ └── index.js │ │ ├── StatsCards │ │ ├── StatsCards.test.js │ │ └── index.js │ │ └── Title │ │ ├── Title.test.js │ │ └── index.js ├── Link │ ├── Link.test.js │ └── index.js ├── Mdx │ ├── Mdx.test.js │ └── index.js ├── PrimaryNav │ ├── NavItem.js │ ├── PrimaryNav.test.js │ ├── close.svg │ └── index.js ├── ProjectList │ ├── ProjectCard.js │ ├── ProjectList.test.js │ └── index.js └── ReportList │ ├── ReportCard.js │ ├── ReportList.test.js │ └── index.js ├── index.js ├── routes ├── AnimatedRoutes │ └── index.js ├── Default │ ├── Default.test.js │ ├── index.js │ └── logo.svg ├── FourOhFour │ ├── FourOhFour.test.js │ └── index.js ├── Head.js ├── Page │ ├── Page.test.js │ └── index.js ├── Post │ ├── Post.test.js │ └── index.js ├── Project │ ├── Links.js │ ├── Project.test.js │ ├── Team.js │ └── index.js ├── Report │ ├── Links.js │ ├── Nav.js │ ├── Report.test.js │ └── index.js └── index.js ├── serviceWorker.js ├── setupTests.js ├── styles ├── core │ ├── _banner.scss │ ├── _button.scss │ ├── _card.scss │ ├── _footer.scss │ ├── _gsaFooter.scss │ ├── _index.scss │ ├── _logo.scss │ └── _primaryNav.scss ├── custom │ ├── _banner.scss │ ├── _break.scss │ ├── _button.scss │ ├── _byTheNumbers.scss │ ├── _card.scss │ ├── _footer.scss │ ├── _gsaFooter.scss │ ├── _header.scss │ ├── _index.scss │ ├── _phaseStatus.scss │ ├── _postList.scss │ ├── _primaryNav.scss │ ├── _projectList.scss │ ├── _reasonForRejection.scss │ ├── _reportList.scss │ ├── _reportTable.scss │ ├── _root.scss │ ├── _txBg.scss │ ├── _txCallout.scss │ └── _txCards.scss ├── font-awesome │ ├── faVariables.scss │ ├── fontAwesome.scss │ └── fonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── fonts │ ├── Faustina │ │ ├── Faustina-Bold.ttf │ │ ├── Faustina-Bold.woff │ │ ├── Faustina-Bold.woff2 │ │ ├── Faustina-BoldItalic.ttf │ │ ├── Faustina-BoldItalic.woff │ │ ├── Faustina-BoldItalic.woff2 │ │ ├── Faustina-Italic.ttf │ │ ├── Faustina-Italic.woff │ │ ├── Faustina-Italic.woff2 │ │ ├── Faustina-Medium.ttf │ │ ├── Faustina-Medium.woff │ │ ├── Faustina-Medium.woff2 │ │ ├── Faustina-MediumItalic.ttf │ │ ├── Faustina-MediumItalic.woff │ │ ├── Faustina-MediumItalic.woff2 │ │ ├── Faustina-Regular.ttf │ │ ├── Faustina-Regular.woff │ │ ├── Faustina-Regular.woff2 │ │ ├── Faustina-SemiBold.ttf │ │ ├── Faustina-SemiBold.woff │ │ ├── Faustina-SemiBold.woff2 │ │ ├── Faustina-SemiBoldItalic.ttf │ │ ├── Faustina-SemiBoldItalic.woff │ │ └── Faustina-SemiBoldItalic.woff2 │ ├── Lato │ │ ├── lato-black.ttf │ │ ├── lato-black.woff │ │ ├── lato-black.woff2 │ │ ├── lato-blackitalic.ttf │ │ ├── lato-blackitalic.woff │ │ ├── lato-blackitalic.woff2 │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bold.woff2 │ │ ├── lato-bolditalic.ttf │ │ ├── lato-bolditalic.woff │ │ ├── lato-bolditalic.woff2 │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-italic.woff2 │ │ ├── lato-light.ttf │ │ ├── lato-light.woff │ │ ├── lato-light.woff2 │ │ ├── lato-lightitalic.ttf │ │ ├── lato-lightitalic.woff │ │ ├── lato-lightitalic.woff2 │ │ ├── lato-regular.ttf │ │ ├── lato-regular.woff │ │ ├── lato-regular.woff2 │ │ ├── lato-thin.ttf │ │ ├── lato-thin.woff │ │ ├── lato-thin.woff2 │ │ ├── lato-thinitalic.ttf │ │ ├── lato-thinitalic.woff │ │ └── lato-thinitalic.woff2 │ ├── Qualy │ │ ├── Qualy-Bold.ttf │ │ ├── Qualy-Bold.woff │ │ └── Qualy-Bold.woff2 │ ├── _index.scss │ ├── merriweather │ │ ├── Latin-Merriweather-Black.ttf │ │ ├── Latin-Merriweather-Black.woff │ │ ├── Latin-Merriweather-Black.woff2 │ │ ├── Latin-Merriweather-BlackItalic.ttf │ │ ├── Latin-Merriweather-BlackItalic.woff │ │ ├── Latin-Merriweather-BlackItalic.woff2 │ │ ├── Latin-Merriweather-Bold.ttf │ │ ├── Latin-Merriweather-Bold.woff │ │ ├── Latin-Merriweather-Bold.woff2 │ │ ├── Latin-Merriweather-BoldItalic.ttf │ │ ├── Latin-Merriweather-BoldItalic.woff │ │ ├── Latin-Merriweather-BoldItalic.woff2 │ │ ├── Latin-Merriweather-Italic.ttf │ │ ├── Latin-Merriweather-Italic.woff │ │ ├── Latin-Merriweather-Italic.woff2 │ │ ├── Latin-Merriweather-Light.ttf │ │ ├── Latin-Merriweather-Light.woff │ │ ├── Latin-Merriweather-Light.woff2 │ │ ├── Latin-Merriweather-LightItalic.ttf │ │ ├── Latin-Merriweather-LightItalic.woff │ │ ├── Latin-Merriweather-LightItalic.woff2 │ │ ├── Latin-Merriweather-Regular.ttf │ │ ├── Latin-Merriweather-Regular.woff │ │ └── Latin-Merriweather-Regular.woff2 │ ├── public-sans │ │ ├── PublicSans-Black.ttf │ │ ├── PublicSans-Black.woff │ │ ├── PublicSans-Black.woff2 │ │ ├── PublicSans-BlackItalic.ttf │ │ ├── PublicSans-BlackItalic.woff │ │ ├── PublicSans-BlackItalic.woff2 │ │ ├── PublicSans-Bold.ttf │ │ ├── PublicSans-Bold.woff │ │ ├── PublicSans-Bold.woff2 │ │ ├── PublicSans-BoldItalic.ttf │ │ ├── PublicSans-BoldItalic.woff │ │ ├── PublicSans-BoldItalic.woff2 │ │ ├── PublicSans-ExtraBold.ttf │ │ ├── PublicSans-ExtraBold.woff │ │ ├── PublicSans-ExtraBold.woff2 │ │ ├── PublicSans-ExtraBoldItalic.ttf │ │ ├── PublicSans-ExtraBoldItalic.woff │ │ ├── PublicSans-ExtraBoldItalic.woff2 │ │ ├── PublicSans-ExtraLight.ttf │ │ ├── PublicSans-ExtraLight.woff │ │ ├── PublicSans-ExtraLight.woff2 │ │ ├── PublicSans-ExtraLightItalic.ttf │ │ ├── PublicSans-ExtraLightItalic.woff │ │ ├── PublicSans-ExtraLightItalic.woff2 │ │ ├── PublicSans-Italic.ttf │ │ ├── PublicSans-Italic.woff │ │ ├── PublicSans-Italic.woff2 │ │ ├── PublicSans-Light.ttf │ │ ├── PublicSans-Light.woff │ │ ├── PublicSans-Light.woff2 │ │ ├── PublicSans-LightItalic.ttf │ │ ├── PublicSans-LightItalic.woff │ │ ├── PublicSans-LightItalic.woff2 │ │ ├── PublicSans-Medium.ttf │ │ ├── PublicSans-Medium.woff │ │ ├── PublicSans-Medium.woff2 │ │ ├── PublicSans-MediumItalic.ttf │ │ ├── PublicSans-MediumItalic.woff │ │ ├── PublicSans-MediumItalic.woff2 │ │ ├── PublicSans-Regular.ttf │ │ ├── PublicSans-Regular.woff │ │ ├── PublicSans-Regular.woff2 │ │ ├── PublicSans-SemiBold.ttf │ │ ├── PublicSans-SemiBold.woff │ │ ├── PublicSans-SemiBold.woff2 │ │ ├── PublicSans-SemiBoldItalic.ttf │ │ ├── PublicSans-SemiBoldItalic.woff │ │ ├── PublicSans-SemiBoldItalic.woff2 │ │ ├── PublicSans-Thin.ttf │ │ ├── PublicSans-Thin.woff │ │ ├── PublicSans-Thin.woff2 │ │ ├── PublicSans-ThinItalic.ttf │ │ ├── PublicSans-ThinItalic.woff │ │ └── PublicSans-ThinItalic.woff2 │ ├── roboto-mono │ │ ├── roboto-mono-v5-latin-100.ttf │ │ ├── roboto-mono-v5-latin-100.woff │ │ ├── roboto-mono-v5-latin-100.woff2 │ │ ├── roboto-mono-v5-latin-100italic.ttf │ │ ├── roboto-mono-v5-latin-100italic.woff │ │ ├── roboto-mono-v5-latin-100italic.woff2 │ │ ├── roboto-mono-v5-latin-300.ttf │ │ ├── roboto-mono-v5-latin-300.woff │ │ ├── roboto-mono-v5-latin-300.woff2 │ │ ├── roboto-mono-v5-latin-300italic.ttf │ │ ├── roboto-mono-v5-latin-300italic.woff │ │ ├── roboto-mono-v5-latin-300italic.woff2 │ │ ├── roboto-mono-v5-latin-500.ttf │ │ ├── roboto-mono-v5-latin-500.woff │ │ ├── roboto-mono-v5-latin-500.woff2 │ │ ├── roboto-mono-v5-latin-500italic.ttf │ │ ├── roboto-mono-v5-latin-500italic.woff │ │ ├── roboto-mono-v5-latin-500italic.woff2 │ │ ├── roboto-mono-v5-latin-700.ttf │ │ ├── roboto-mono-v5-latin-700.woff │ │ ├── roboto-mono-v5-latin-700.woff2 │ │ ├── roboto-mono-v5-latin-700italic.ttf │ │ ├── roboto-mono-v5-latin-700italic.woff │ │ ├── roboto-mono-v5-latin-700italic.woff2 │ │ ├── roboto-mono-v5-latin-italic.ttf │ │ ├── roboto-mono-v5-latin-italic.woff │ │ ├── roboto-mono-v5-latin-italic.woff2 │ │ ├── roboto-mono-v5-latin-regular.ttf │ │ ├── roboto-mono-v5-latin-regular.woff │ │ └── roboto-mono-v5-latin-regular.woff2 │ ├── source-sans-pro │ │ ├── sourcesanspro-black-webfont.ttf │ │ ├── sourcesanspro-black-webfont.woff │ │ ├── sourcesanspro-black-webfont.woff2 │ │ ├── sourcesanspro-blackitalic-webfont.ttf │ │ ├── sourcesanspro-blackitalic-webfont.woff │ │ ├── sourcesanspro-blackitalic-webfont.woff2 │ │ ├── sourcesanspro-bold-webfont.ttf │ │ ├── sourcesanspro-bold-webfont.woff │ │ ├── sourcesanspro-bold-webfont.woff2 │ │ ├── sourcesanspro-bolditalic-webfont.ttf │ │ ├── sourcesanspro-bolditalic-webfont.woff │ │ ├── sourcesanspro-bolditalic-webfont.woff2 │ │ ├── sourcesanspro-extralight-webfont.ttf │ │ ├── sourcesanspro-extralight-webfont.woff │ │ ├── sourcesanspro-extralight-webfont.woff2 │ │ ├── sourcesanspro-extralightitalic-webfont.ttf │ │ ├── sourcesanspro-extralightitalic-webfont.woff │ │ ├── sourcesanspro-extralightitalic-webfont.woff2 │ │ ├── sourcesanspro-italic-webfont.ttf │ │ ├── sourcesanspro-italic-webfont.woff │ │ ├── sourcesanspro-italic-webfont.woff2 │ │ ├── sourcesanspro-light-webfont.ttf │ │ ├── sourcesanspro-light-webfont.woff │ │ ├── sourcesanspro-light-webfont.woff2 │ │ ├── sourcesanspro-lightitalic-webfont.ttf │ │ ├── sourcesanspro-lightitalic-webfont.woff │ │ ├── sourcesanspro-lightitalic-webfont.woff2 │ │ ├── sourcesanspro-regular-webfont.ttf │ │ ├── sourcesanspro-regular-webfont.woff │ │ ├── sourcesanspro-regular-webfont.woff2 │ │ ├── sourcesanspro-semibold-webfont.ttf │ │ ├── sourcesanspro-semibold-webfont.woff │ │ ├── sourcesanspro-semibold-webfont.woff2 │ │ ├── sourcesanspro-semibolditalic-webfont.ttf │ │ ├── sourcesanspro-semibolditalic-webfont.woff │ │ └── sourcesanspro-semibolditalic-webfont.woff2 │ └── united-sans │ │ ├── UnitedSans-Black.eot │ │ ├── UnitedSans-Black.otf │ │ ├── UnitedSans-Black.ttf │ │ ├── UnitedSans-Black.woff │ │ ├── UnitedSans-Black.woff2 │ │ ├── UnitedSans-BlackItalic.eot │ │ ├── UnitedSans-BlackItalic.ttf │ │ ├── UnitedSans-BlackItalic.woff │ │ ├── UnitedSans-BlackItalic.woff2 │ │ ├── UnitedSans-Bold.eot │ │ ├── UnitedSans-Bold.otf │ │ ├── UnitedSans-Bold.ttf │ │ ├── UnitedSans-Bold.woff │ │ ├── UnitedSans-Bold.woff2 │ │ ├── UnitedSans-BoldItalic.eot │ │ ├── UnitedSans-BoldItalic.ttf │ │ ├── UnitedSans-BoldItalic.woff │ │ ├── UnitedSans-BoldItalic.woff2 │ │ ├── UnitedSans-ExtraBold.eot │ │ ├── UnitedSans-ExtraBold.otf │ │ ├── UnitedSans-ExtraBold.ttf │ │ ├── UnitedSans-ExtraBold.woff │ │ ├── UnitedSans-ExtraBold.woff2 │ │ ├── UnitedSans-ExtraBoldItalic.eot │ │ ├── UnitedSans-ExtraBoldItalic.ttf │ │ ├── UnitedSans-ExtraBoldItalic.woff │ │ ├── UnitedSans-ExtraBoldItalic.woff2 │ │ ├── UnitedSans-ExtraLight.eot │ │ ├── UnitedSans-ExtraLight.otf │ │ ├── UnitedSans-ExtraLight.ttf │ │ ├── UnitedSans-ExtraLight.woff │ │ ├── UnitedSans-ExtraLight.woff2 │ │ ├── UnitedSans-ExtraLightItalic.eot │ │ ├── UnitedSans-ExtraLightItalic.ttf │ │ ├── UnitedSans-ExtraLightItalic.woff │ │ ├── UnitedSans-ExtraLightItalic.woff2 │ │ ├── UnitedSans-Italic.eot │ │ ├── UnitedSans-Italic.ttf │ │ ├── UnitedSans-Italic.woff │ │ ├── UnitedSans-Italic.woff2 │ │ ├── UnitedSans-Light.eot │ │ ├── UnitedSans-Light.otf │ │ ├── UnitedSans-Light.ttf │ │ ├── UnitedSans-Light.woff │ │ ├── UnitedSans-Light.woff2 │ │ ├── UnitedSans-LightItalic.eot │ │ ├── UnitedSans-LightItalic.ttf │ │ ├── UnitedSans-LightItalic.woff │ │ ├── UnitedSans-LightItalic.woff2 │ │ ├── UnitedSans-Medium.eot │ │ ├── UnitedSans-Medium.otf │ │ ├── UnitedSans-Medium.ttf │ │ ├── UnitedSans-Medium.woff │ │ ├── UnitedSans-Medium.woff2 │ │ ├── UnitedSans-MediumItalic.eot │ │ ├── UnitedSans-MediumItalic.ttf │ │ ├── UnitedSans-MediumItalic.woff │ │ ├── UnitedSans-MediumItalic.woff2 │ │ ├── UnitedSans-Regular.eot │ │ ├── UnitedSans-Regular.otf │ │ ├── UnitedSans-Regular.ttf │ │ ├── UnitedSans-Regular.woff │ │ ├── UnitedSans-Regular.woff2 │ │ ├── UnitedSans-SemiBold.eot │ │ ├── UnitedSans-SemiBold.otf │ │ ├── UnitedSans-SemiBold.ttf │ │ ├── UnitedSans-SemiBold.woff │ │ ├── UnitedSans-SemiBold.woff2 │ │ ├── UnitedSans-SemiBoldItalic.eot │ │ ├── UnitedSans-SemiBoldItalic.ttf │ │ ├── UnitedSans-SemiBoldItalic.woff │ │ ├── UnitedSans-SemiBoldItalic.woff2 │ │ ├── UnitedSans-Thin.eot │ │ ├── UnitedSans-Thin.otf │ │ ├── UnitedSans-Thin.ttf │ │ ├── UnitedSans-Thin.woff │ │ ├── UnitedSans-Thin.woff2 │ │ ├── UnitedSans-ThinItalic.eot │ │ ├── UnitedSans-ThinItalic.ttf │ │ ├── UnitedSans-ThinItalic.woff │ │ └── UnitedSans-ThinItalic.woff2 ├── images │ ├── ableist-ui-demo-800px-opt.gif │ ├── brush-stroke.svg │ ├── by-the-numbers-bg.png │ ├── callout-green-full-lg.png │ ├── callout-icon-bg.png │ ├── callout-icon-check.png │ ├── callout-lilac-full-lg.png │ ├── callout-lilac-half-lg.png │ ├── checkmark-icon.svg │ ├── checkmark.svg │ ├── delna.png │ ├── envelope-icon.svg │ ├── external-link-icon.svg │ ├── fb-share-img.png │ ├── featured-bg-1.png │ ├── featured-bg-2.png │ ├── featured-bg-3.png │ ├── featured-bg-4.png │ ├── footer-brush-stroke.svg │ ├── footer-brush-strokes.svg │ ├── frank.png │ ├── fueling-innovation-callout-bg.png │ ├── funnel-arrow-v.png │ ├── funnel-arrow.png │ ├── funnel-bg.png │ ├── funnel-mobile-bg.png │ ├── grad-cap-icon.svg │ ├── gsa-logo.svg │ ├── header-brush-stroke.png │ ├── home-brush-strokes.svg │ ├── home-callout-bg.png │ ├── home-featured-brush-stroke-1.png │ ├── home-featured-brush-stroke-2.png │ ├── home-featured-brush-stroke-3.png │ ├── home-featured-brush-stroke-4.png │ ├── home-hero-bg-stroke.png │ ├── home-x.png │ ├── impact-report_pdf-icon.png │ ├── in-a-nutshell-background.svg │ ├── in-nutshell-body.png │ ├── in-nutshell-header.png │ ├── jim.png │ ├── menu-close-X.png │ ├── menu-close.png │ ├── menu-icon.svg │ ├── menu-open.png │ ├── our-process-callout-bg-mobile.png │ ├── our-process-callout-bg.png │ ├── our-story-brush-stroke-background.png │ ├── our-story-stat-1-background.png │ ├── our-story-stat-2-background.png │ ├── phase-circle-lilac.png │ ├── phase-circle-ocean.png │ ├── phase-circle-sky.png │ ├── phase-circle-smoke.png │ ├── phase-circle-tiger.png │ ├── phases-bg.png │ ├── phases-mobile-bg-bottom.png │ ├── phases-mobile-bg-top.png │ ├── pitch-structure-bg.png │ ├── pitch-structure-mobile-bg.png │ ├── portfolio-paint-stroke-1-v.png │ ├── portfolio-paint-stroke-1.png │ ├── portfolio-paint-stroke-2-v.png │ ├── portfolio-paint-stroke-2.png │ ├── portfolio-paint-stroke-3-v.png │ ├── portfolio-paint-stroke-3.png │ ├── portfolio-paint-stroke-4-v.png │ ├── portfolio-paint-stroke-4.png │ ├── portfolio-paint-stroke-5-v.png │ ├── portfolio-paint-stroke-5.png │ ├── portfolio-paint-stroke-6-v.png │ ├── portfolio-paint-stroke-6.png │ ├── quote-background.png │ ├── quote-mobile-background.png │ ├── quote.png │ ├── report-1-bg-mobile.png │ ├── report-1-bg-plain.png │ ├── report-1-bg-tablet.png │ ├── report-1-bg.png │ ├── report-gradient-separator.png │ ├── report-green-brush-stroke.png │ ├── report-green-separator.png │ ├── report-lilac-brush-stroke.png │ ├── report-nav-active-bar.png │ ├── ring-separater.png │ ├── short-lilac-brush-stroke.png │ ├── short-ocean-brush-stroke.png │ ├── short-sky-brush-stroke.png │ ├── short-tiger-brush-stroke.png │ ├── submit-idea-bg.png │ ├── submitter-icon.svg │ ├── team-icon.svg │ ├── the-10x-team-22.png │ ├── the-10x-team.png │ ├── theme-2-bg.png │ ├── theme-5-bg.png │ └── twitter-share-img.png ├── index.scss ├── mixins │ ├── fullWidthBg.scss │ ├── index.scss │ └── linkVariant.scss ├── pages │ ├── _designing-success.scss │ ├── _four-oh-four.scss │ ├── _fueling-innovation.scss │ ├── _home.scss │ ├── _index.scss │ ├── _making-each-dollar-count.scss │ ├── _our-challenge-to-you.scss │ ├── _our-process.scss │ ├── _projects.scss │ └── _reports.scss └── theme │ ├── _uswds-theme-color.scss │ ├── _uswds-theme-components.scss │ ├── _uswds-theme-custom-styles.scss │ ├── _uswds-theme-general.scss │ ├── _uswds-theme-spacing.scss │ ├── _uswds-theme-typography.scss │ ├── _uswds-theme-utilities.scss │ └── styles.scss ├── templates └── Primary │ ├── Footer.js │ ├── GSAFooter │ ├── gsa-logo-w100.png │ ├── gsa-logo.svg │ └── index.js │ ├── Header.js │ ├── Primary.test.js │ ├── Search.js │ └── index.js ├── test ├── TestProvider.js └── utils │ ├── resizeWindow.js │ └── runAsyncRender.js └── utils ├── registerAnalytics.js ├── registerFontAwesome.js ├── useOnPathChange.js └── useScrollToTop.js /.github/ISSUE_TEMPLATE/backlog-item-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/.github/ISSUE_TEMPLATE/backlog-item-template.md -------------------------------------------------------------------------------- /.github/workflows/content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/.github/workflows/content.yml -------------------------------------------------------------------------------- /.github/workflows/ssr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/.github/workflows/ssr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | puppeteer_skip_chromium_download=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.15.0 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/README.md -------------------------------------------------------------------------------- /cms/404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/404.json -------------------------------------------------------------------------------- /cms/__example-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/__example-settings.json -------------------------------------------------------------------------------- /cms/content/footer/10x-in-the-wild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/footer/10x-in-the-wild.json -------------------------------------------------------------------------------- /cms/content/footer/every-solution-starts-as-an-idea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/footer/every-solution-starts-as-an-idea.json -------------------------------------------------------------------------------- /cms/content/footer/we-started-as-an-idea-too.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/footer/we-started-as-an-idea-too.json -------------------------------------------------------------------------------- /cms/content/page/designing-success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/designing-success.json -------------------------------------------------------------------------------- /cms/content/page/fueling-innovation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/fueling-innovation.json -------------------------------------------------------------------------------- /cms/content/page/homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/homepage.json -------------------------------------------------------------------------------- /cms/content/page/making-each-dollar-count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/making-each-dollar-count.json -------------------------------------------------------------------------------- /cms/content/page/news-updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/news-updates.json -------------------------------------------------------------------------------- /cms/content/page/our-challenge-to-you.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/our-challenge-to-you.json -------------------------------------------------------------------------------- /cms/content/page/our-impact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/our-impact.json -------------------------------------------------------------------------------- /cms/content/page/privacy-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/privacy-policy.json -------------------------------------------------------------------------------- /cms/content/page/process.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/process.json -------------------------------------------------------------------------------- /cms/content/page/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/projects.json -------------------------------------------------------------------------------- /cms/content/page/reports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/page/reports.json -------------------------------------------------------------------------------- /cms/content/post/2020-lightning-talks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2020-lightning-talks.json -------------------------------------------------------------------------------- /cms/content/post/2021-selected-projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2021-selected-projects.json -------------------------------------------------------------------------------- /cms/content/post/2022-round-one-submission-period-priorities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2022-round-one-submission-period-priorities.json -------------------------------------------------------------------------------- /cms/content/post/2022-selected-projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2022-selected-projects.json -------------------------------------------------------------------------------- /cms/content/post/2023-idea-submission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2023-idea-submission.json -------------------------------------------------------------------------------- /cms/content/post/2023-selected-projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2023-selected-projects.json -------------------------------------------------------------------------------- /cms/content/post/2023-submission-period.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/2023-submission-period.json -------------------------------------------------------------------------------- /cms/content/post/government-reinvention-venture-capitalist-mindset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/government-reinvention-venture-capitalist-mindset.json -------------------------------------------------------------------------------- /cms/content/post/investment-approach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/investment-approach.json -------------------------------------------------------------------------------- /cms/content/post/policy-as-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/policy-as-code.json -------------------------------------------------------------------------------- /cms/content/post/public-sector-innovation-winners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/public-sector-innovation-winners.json -------------------------------------------------------------------------------- /cms/content/post/scaling-10x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/scaling-10x.json -------------------------------------------------------------------------------- /cms/content/post/transforming-technology-agile-investments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/post/transforming-technology-agile-investments.json -------------------------------------------------------------------------------- /cms/content/project/benefits-eligibility-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/benefits-eligibility-resource.json -------------------------------------------------------------------------------- /cms/content/project/combating-bias-in-ai-ml-implementation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/combating-bias-in-ai-ml-implementation.json -------------------------------------------------------------------------------- /cms/content/project/de-risking-government-technology-field-guides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/de-risking-government-technology-field-guides.json -------------------------------------------------------------------------------- /cms/content/project/devops-for-privacy-offices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/devops-for-privacy-offices.json -------------------------------------------------------------------------------- /cms/content/project/eligibility-apis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/eligibility-apis.json -------------------------------------------------------------------------------- /cms/content/project/equity-centered-design-for-ai-an.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/equity-centered-design-for-ai-an.json -------------------------------------------------------------------------------- /cms/content/project/finding-grant-funded-products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/finding-grant-funded-products.json -------------------------------------------------------------------------------- /cms/content/project/guide-to-pra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/guide-to-pra.json -------------------------------------------------------------------------------- /cms/content/project/identity-alerts-for-government.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/identity-alerts-for-government.json -------------------------------------------------------------------------------- /cms/content/project/inclusion-for-rulemaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/inclusion-for-rulemaking.json -------------------------------------------------------------------------------- /cms/content/project/low-code-no-code-service-delivery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/low-code-no-code-service-delivery.json -------------------------------------------------------------------------------- /cms/content/project/multilingual-glossary-tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/multilingual-glossary-tool.json -------------------------------------------------------------------------------- /cms/content/project/shared-components-for-museums-and-libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/shared-components-for-museums-and-libraries.json -------------------------------------------------------------------------------- /cms/content/project/site-scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/site-scanner.json -------------------------------------------------------------------------------- /cms/content/project/untangling-climate-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/untangling-climate-resources.json -------------------------------------------------------------------------------- /cms/content/project/us-data-federation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/project/us-data-federation.json -------------------------------------------------------------------------------- /cms/content/report/fy17-impact-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/report/fy17-impact-report.json -------------------------------------------------------------------------------- /cms/content/report/fy18-impact-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/report/fy18-impact-report.json -------------------------------------------------------------------------------- /cms/content/report/fy19-impact-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/report/fy19-impact-report.json -------------------------------------------------------------------------------- /cms/content/report/fy20-impact-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/report/fy20-impact-report.json -------------------------------------------------------------------------------- /cms/content/report/fy21-impact-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/report/fy21-impact-report.json -------------------------------------------------------------------------------- /cms/content/report/fy22-impact-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/content/report/fy22-impact-report.json -------------------------------------------------------------------------------- /cms/menus/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/menus/global.json -------------------------------------------------------------------------------- /cms/redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/cms/redirects.json -------------------------------------------------------------------------------- /federalist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/federalist.json -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/package.json -------------------------------------------------------------------------------- /public/10x-lg-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/10x-lg-transparent.png -------------------------------------------------------------------------------- /public/404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/404.json -------------------------------------------------------------------------------- /public/admin/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/admin/config.yml -------------------------------------------------------------------------------- /public/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/admin/index.html -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/10x_FY17_Year_in_Review_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/10x_FY17_Year_in_Review_Report.pdf -------------------------------------------------------------------------------- /public/images/10x_FY18_Year_in_Review_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/10x_FY18_Year_in_Review_Report.pdf -------------------------------------------------------------------------------- /public/images/10x_FY19_Year_in_Review_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/10x_FY19_Year_in_Review_Report.pdf -------------------------------------------------------------------------------- /public/images/10x_FY20_Impact_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/10x_FY20_Impact_Report.pdf -------------------------------------------------------------------------------- /public/images/10x_fy20_impact_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/10x_fy20_impact_report.pdf -------------------------------------------------------------------------------- /public/images/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/favicon/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/favicon/android-chrome-384x384.png -------------------------------------------------------------------------------- /public/images/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/favicon/favicon.ico -------------------------------------------------------------------------------- /public/images/gsa-logo-w100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/gsa-logo-w100.png -------------------------------------------------------------------------------- /public/images/gsa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/gsa-logo.svg -------------------------------------------------------------------------------- /public/images/menu/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/menu/about.svg -------------------------------------------------------------------------------- /public/images/menu/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/menu/home.svg -------------------------------------------------------------------------------- /public/images/menu/ideas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/menu/ideas.svg -------------------------------------------------------------------------------- /public/images/menu/process.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/menu/process.svg -------------------------------------------------------------------------------- /public/images/menu/projects.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/images/menu/projects.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/public/robots.txt -------------------------------------------------------------------------------- /runIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/runIndex.js -------------------------------------------------------------------------------- /src/app/ContentModule/ContentModule.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/ContentModule/ContentModule.test.js -------------------------------------------------------------------------------- /src/app/ContentModule/context/contentAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/ContentModule/context/contentAPI.js -------------------------------------------------------------------------------- /src/app/ContentModule/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/ContentModule/context/index.js -------------------------------------------------------------------------------- /src/app/ContentModule/context/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/ContentModule/context/ssr.js -------------------------------------------------------------------------------- /src/app/ContentModule/context/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/ContentModule/context/test.js -------------------------------------------------------------------------------- /src/app/ContentModule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/ContentModule/index.js -------------------------------------------------------------------------------- /src/app/MenuModule/MenuModule.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/MenuModule/MenuModule.test.js -------------------------------------------------------------------------------- /src/app/MenuModule/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/MenuModule/context/index.js -------------------------------------------------------------------------------- /src/app/MenuModule/context/menuAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/MenuModule/context/menuAPI.js -------------------------------------------------------------------------------- /src/app/MenuModule/context/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/MenuModule/context/ssr.js -------------------------------------------------------------------------------- /src/app/MenuModule/context/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/MenuModule/context/test.js -------------------------------------------------------------------------------- /src/app/MenuModule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/MenuModule/index.js -------------------------------------------------------------------------------- /src/app/SettingsModule/SettingsModule.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/SettingsModule/SettingsModule.test.js -------------------------------------------------------------------------------- /src/app/SettingsModule/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/SettingsModule/context/index.js -------------------------------------------------------------------------------- /src/app/SettingsModule/context/settingsAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/SettingsModule/context/settingsAPI.js -------------------------------------------------------------------------------- /src/app/SettingsModule/context/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/SettingsModule/context/ssr.js -------------------------------------------------------------------------------- /src/app/SettingsModule/context/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/SettingsModule/context/test.js -------------------------------------------------------------------------------- /src/app/SettingsModule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/SettingsModule/index.js -------------------------------------------------------------------------------- /src/app/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/app.test.js -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/components/Banner/Banner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Banner/Banner.test.js -------------------------------------------------------------------------------- /src/components/Banner/icon-dot-gov.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Banner/icon-dot-gov.svg -------------------------------------------------------------------------------- /src/components/Banner/icon-https.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Banner/icon-https.svg -------------------------------------------------------------------------------- /src/components/Banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Banner/index.js -------------------------------------------------------------------------------- /src/components/Banner/us_flag_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Banner/us_flag_small.png -------------------------------------------------------------------------------- /src/components/Break/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Break/index.js -------------------------------------------------------------------------------- /src/components/Card/Card.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Card/Card.test.js -------------------------------------------------------------------------------- /src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Card/index.js -------------------------------------------------------------------------------- /src/components/Chart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Chart/index.js -------------------------------------------------------------------------------- /src/components/Date/Date.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Date/Date.test.js -------------------------------------------------------------------------------- /src/components/Date/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Date/index.js -------------------------------------------------------------------------------- /src/components/Grid/Grid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Grid/Grid.test.js -------------------------------------------------------------------------------- /src/components/Grid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Grid/index.js -------------------------------------------------------------------------------- /src/components/Icon/Icon.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Icon/Icon.test.js -------------------------------------------------------------------------------- /src/components/Icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Icon/index.js -------------------------------------------------------------------------------- /src/components/List/List.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/List/List.test.js -------------------------------------------------------------------------------- /src/components/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/List/index.js -------------------------------------------------------------------------------- /src/components/Loading/Loading.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Loading/Loading.test.js -------------------------------------------------------------------------------- /src/components/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Loading/index.js -------------------------------------------------------------------------------- /src/components/Loading/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Loading/loading.png -------------------------------------------------------------------------------- /src/components/Logo/Logo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Logo/Logo.test.js -------------------------------------------------------------------------------- /src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Logo/index.js -------------------------------------------------------------------------------- /src/components/Logo/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Logo/logo1.svg -------------------------------------------------------------------------------- /src/components/Logo/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Logo/logo2.svg -------------------------------------------------------------------------------- /src/components/Logo/logo3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Logo/logo3.svg -------------------------------------------------------------------------------- /src/components/Select/Select.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Select/Select.test.js -------------------------------------------------------------------------------- /src/components/Select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/components/Select/index.js -------------------------------------------------------------------------------- /src/features/Button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Button/Button.test.js -------------------------------------------------------------------------------- /src/features/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Button/index.js -------------------------------------------------------------------------------- /src/features/ContentList/ContentList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ContentList/ContentList.test.js -------------------------------------------------------------------------------- /src/features/ContentList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ContentList/index.js -------------------------------------------------------------------------------- /src/features/GhostWriter/GhostWriter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/GhostWriter/GhostWriter.test.js -------------------------------------------------------------------------------- /src/features/GhostWriter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/GhostWriter/index.js -------------------------------------------------------------------------------- /src/features/Layout/Layout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/Layout.test.js -------------------------------------------------------------------------------- /src/features/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/ByTheNumbersGraphic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/ByTheNumbersGraphic/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Callout/Callout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Callout/Callout.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Callout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Callout/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Cards/Cards.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Cards/Cards.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Cards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Cards/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Links/Links.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Links/Links.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Links/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Links/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/List/List.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/List/List.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/List/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PhaseDescription/PhaseDescription.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PhaseDescription/PhaseDescription.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PhaseDescription/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PhaseDescription/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PhaseGraphic/PhaseGraphic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PhaseGraphic/PhaseGraphic.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PhaseGraphic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PhaseGraphic/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PhaseStatus/PhaseStatus.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PhaseStatus/PhaseStatus.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PhaseStatus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PhaseStatus/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PostList/PostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PostList/PostCard.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PostList/PostList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PostList/PostList.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/PostList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/PostList/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/ReasonForRejection/ReasonForRejection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/ReasonForRejection/ReasonForRejection.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/ReasonForRejection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/ReasonForRejection/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/ReportBudgetTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/ReportBudgetTable/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/ReportTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/ReportTable/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/StatsCards/StatsCards.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/StatsCards/StatsCards.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/StatsCards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/StatsCards/index.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Title/Title.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Title/Title.test.js -------------------------------------------------------------------------------- /src/features/Layout/templates/Title/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Layout/templates/Title/index.js -------------------------------------------------------------------------------- /src/features/Link/Link.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Link/Link.test.js -------------------------------------------------------------------------------- /src/features/Link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Link/index.js -------------------------------------------------------------------------------- /src/features/Mdx/Mdx.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Mdx/Mdx.test.js -------------------------------------------------------------------------------- /src/features/Mdx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/Mdx/index.js -------------------------------------------------------------------------------- /src/features/PrimaryNav/NavItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/PrimaryNav/NavItem.js -------------------------------------------------------------------------------- /src/features/PrimaryNav/PrimaryNav.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/PrimaryNav/PrimaryNav.test.js -------------------------------------------------------------------------------- /src/features/PrimaryNav/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/PrimaryNav/close.svg -------------------------------------------------------------------------------- /src/features/PrimaryNav/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/PrimaryNav/index.js -------------------------------------------------------------------------------- /src/features/ProjectList/ProjectCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ProjectList/ProjectCard.js -------------------------------------------------------------------------------- /src/features/ProjectList/ProjectList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ProjectList/ProjectList.test.js -------------------------------------------------------------------------------- /src/features/ProjectList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ProjectList/index.js -------------------------------------------------------------------------------- /src/features/ReportList/ReportCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ReportList/ReportCard.js -------------------------------------------------------------------------------- /src/features/ReportList/ReportList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ReportList/ReportList.test.js -------------------------------------------------------------------------------- /src/features/ReportList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/features/ReportList/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes/AnimatedRoutes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/AnimatedRoutes/index.js -------------------------------------------------------------------------------- /src/routes/Default/Default.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Default/Default.test.js -------------------------------------------------------------------------------- /src/routes/Default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Default/index.js -------------------------------------------------------------------------------- /src/routes/Default/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Default/logo.svg -------------------------------------------------------------------------------- /src/routes/FourOhFour/FourOhFour.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/FourOhFour/FourOhFour.test.js -------------------------------------------------------------------------------- /src/routes/FourOhFour/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/FourOhFour/index.js -------------------------------------------------------------------------------- /src/routes/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Head.js -------------------------------------------------------------------------------- /src/routes/Page/Page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Page/Page.test.js -------------------------------------------------------------------------------- /src/routes/Page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Page/index.js -------------------------------------------------------------------------------- /src/routes/Post/Post.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Post/Post.test.js -------------------------------------------------------------------------------- /src/routes/Post/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Post/index.js -------------------------------------------------------------------------------- /src/routes/Project/Links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Project/Links.js -------------------------------------------------------------------------------- /src/routes/Project/Project.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Project/Project.test.js -------------------------------------------------------------------------------- /src/routes/Project/Team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Project/Team.js -------------------------------------------------------------------------------- /src/routes/Project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Project/index.js -------------------------------------------------------------------------------- /src/routes/Report/Links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Report/Links.js -------------------------------------------------------------------------------- /src/routes/Report/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Report/Nav.js -------------------------------------------------------------------------------- /src/routes/Report/Report.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Report/Report.test.js -------------------------------------------------------------------------------- /src/routes/Report/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/Report/index.js -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/styles/core/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_banner.scss -------------------------------------------------------------------------------- /src/styles/core/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_button.scss -------------------------------------------------------------------------------- /src/styles/core/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_card.scss -------------------------------------------------------------------------------- /src/styles/core/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_footer.scss -------------------------------------------------------------------------------- /src/styles/core/_gsaFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_gsaFooter.scss -------------------------------------------------------------------------------- /src/styles/core/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_index.scss -------------------------------------------------------------------------------- /src/styles/core/_logo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_logo.scss -------------------------------------------------------------------------------- /src/styles/core/_primaryNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/core/_primaryNav.scss -------------------------------------------------------------------------------- /src/styles/custom/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_banner.scss -------------------------------------------------------------------------------- /src/styles/custom/_break.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_break.scss -------------------------------------------------------------------------------- /src/styles/custom/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_button.scss -------------------------------------------------------------------------------- /src/styles/custom/_byTheNumbers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_byTheNumbers.scss -------------------------------------------------------------------------------- /src/styles/custom/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_card.scss -------------------------------------------------------------------------------- /src/styles/custom/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_footer.scss -------------------------------------------------------------------------------- /src/styles/custom/_gsaFooter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_gsaFooter.scss -------------------------------------------------------------------------------- /src/styles/custom/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_header.scss -------------------------------------------------------------------------------- /src/styles/custom/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_index.scss -------------------------------------------------------------------------------- /src/styles/custom/_phaseStatus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_phaseStatus.scss -------------------------------------------------------------------------------- /src/styles/custom/_postList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_postList.scss -------------------------------------------------------------------------------- /src/styles/custom/_primaryNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_primaryNav.scss -------------------------------------------------------------------------------- /src/styles/custom/_projectList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_projectList.scss -------------------------------------------------------------------------------- /src/styles/custom/_reasonForRejection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_reasonForRejection.scss -------------------------------------------------------------------------------- /src/styles/custom/_reportList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_reportList.scss -------------------------------------------------------------------------------- /src/styles/custom/_reportTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_reportTable.scss -------------------------------------------------------------------------------- /src/styles/custom/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_root.scss -------------------------------------------------------------------------------- /src/styles/custom/_txBg.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/custom/_txCallout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_txCallout.scss -------------------------------------------------------------------------------- /src/styles/custom/_txCards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/custom/_txCards.scss -------------------------------------------------------------------------------- /src/styles/font-awesome/faVariables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/faVariables.scss -------------------------------------------------------------------------------- /src/styles/font-awesome/fontAwesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fontAwesome.scss -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/styles/font-awesome/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/font-awesome/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-BoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-BoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Medium.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-MediumItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-MediumItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-SemiBold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-SemiBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-SemiBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Faustina/Faustina-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Faustina/Faustina-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-black.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-black.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-black.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-blackitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-blackitalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-blackitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-blackitalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-blackitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-blackitalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-light.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-light.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-lightitalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-lightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-lightitalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-lightitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-lightitalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-thin.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-thin.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-thin.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-thinitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-thinitalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-thinitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-thinitalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/Lato/lato-thinitalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Lato/lato-thinitalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/Qualy/Qualy-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Qualy/Qualy-Bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/Qualy/Qualy-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Qualy/Qualy-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/Qualy/Qualy-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/Qualy/Qualy-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/_index.scss -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Black.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Black.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Black.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-BlackItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-BlackItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-BoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-BoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Light.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Light.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-LightItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-LightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-LightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/merriweather/Latin-Merriweather-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/merriweather/Latin-Merriweather-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Black.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Black.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Black.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-BlackItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-BlackItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-BoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraLight.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraLightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Light.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Light.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-LightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-LightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Medium.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-MediumItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-MediumItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-SemiBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Thin.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Thin.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-Thin.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ThinItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/public-sans/PublicSans-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/public-sans/PublicSans-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-black-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-black-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-black-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-black-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-black-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-extralight-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-extralight-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-light-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-semibold-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.ttf -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff -------------------------------------------------------------------------------- /src/styles/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Black.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Black.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Black.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Black.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Black.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BlackItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BlackItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BlackItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Bold.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Bold.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Bold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Bold.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BoldItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBold.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBold.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLight.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLight.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLight.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Italic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Italic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Italic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Italic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Light.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Light.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Light.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Light.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-LightItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-LightItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-LightItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Medium.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Medium.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Medium.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-MediumItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-MediumItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-MediumItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Regular.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Regular.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBold.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBold.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBold.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Thin.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Thin.otf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Thin.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Thin.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-Thin.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ThinItalic.eot -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ThinItalic.woff -------------------------------------------------------------------------------- /src/styles/fonts/united-sans/UnitedSans-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/fonts/united-sans/UnitedSans-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/styles/images/ableist-ui-demo-800px-opt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/ableist-ui-demo-800px-opt.gif -------------------------------------------------------------------------------- /src/styles/images/brush-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/brush-stroke.svg -------------------------------------------------------------------------------- /src/styles/images/by-the-numbers-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/by-the-numbers-bg.png -------------------------------------------------------------------------------- /src/styles/images/callout-green-full-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/callout-green-full-lg.png -------------------------------------------------------------------------------- /src/styles/images/callout-icon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/callout-icon-bg.png -------------------------------------------------------------------------------- /src/styles/images/callout-icon-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/callout-icon-check.png -------------------------------------------------------------------------------- /src/styles/images/callout-lilac-full-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/callout-lilac-full-lg.png -------------------------------------------------------------------------------- /src/styles/images/callout-lilac-half-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/callout-lilac-half-lg.png -------------------------------------------------------------------------------- /src/styles/images/checkmark-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/checkmark-icon.svg -------------------------------------------------------------------------------- /src/styles/images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/checkmark.svg -------------------------------------------------------------------------------- /src/styles/images/delna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/delna.png -------------------------------------------------------------------------------- /src/styles/images/envelope-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/envelope-icon.svg -------------------------------------------------------------------------------- /src/styles/images/external-link-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/external-link-icon.svg -------------------------------------------------------------------------------- /src/styles/images/fb-share-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/fb-share-img.png -------------------------------------------------------------------------------- /src/styles/images/featured-bg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/featured-bg-1.png -------------------------------------------------------------------------------- /src/styles/images/featured-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/featured-bg-2.png -------------------------------------------------------------------------------- /src/styles/images/featured-bg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/featured-bg-3.png -------------------------------------------------------------------------------- /src/styles/images/featured-bg-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/featured-bg-4.png -------------------------------------------------------------------------------- /src/styles/images/footer-brush-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/footer-brush-stroke.svg -------------------------------------------------------------------------------- /src/styles/images/footer-brush-strokes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/footer-brush-strokes.svg -------------------------------------------------------------------------------- /src/styles/images/frank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/frank.png -------------------------------------------------------------------------------- /src/styles/images/fueling-innovation-callout-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/fueling-innovation-callout-bg.png -------------------------------------------------------------------------------- /src/styles/images/funnel-arrow-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/funnel-arrow-v.png -------------------------------------------------------------------------------- /src/styles/images/funnel-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/funnel-arrow.png -------------------------------------------------------------------------------- /src/styles/images/funnel-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/funnel-bg.png -------------------------------------------------------------------------------- /src/styles/images/funnel-mobile-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/funnel-mobile-bg.png -------------------------------------------------------------------------------- /src/styles/images/grad-cap-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/grad-cap-icon.svg -------------------------------------------------------------------------------- /src/styles/images/gsa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/gsa-logo.svg -------------------------------------------------------------------------------- /src/styles/images/header-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/header-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/home-brush-strokes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-brush-strokes.svg -------------------------------------------------------------------------------- /src/styles/images/home-callout-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-callout-bg.png -------------------------------------------------------------------------------- /src/styles/images/home-featured-brush-stroke-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-featured-brush-stroke-1.png -------------------------------------------------------------------------------- /src/styles/images/home-featured-brush-stroke-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-featured-brush-stroke-2.png -------------------------------------------------------------------------------- /src/styles/images/home-featured-brush-stroke-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-featured-brush-stroke-3.png -------------------------------------------------------------------------------- /src/styles/images/home-featured-brush-stroke-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-featured-brush-stroke-4.png -------------------------------------------------------------------------------- /src/styles/images/home-hero-bg-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-hero-bg-stroke.png -------------------------------------------------------------------------------- /src/styles/images/home-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/home-x.png -------------------------------------------------------------------------------- /src/styles/images/impact-report_pdf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/impact-report_pdf-icon.png -------------------------------------------------------------------------------- /src/styles/images/in-a-nutshell-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/in-a-nutshell-background.svg -------------------------------------------------------------------------------- /src/styles/images/in-nutshell-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/in-nutshell-body.png -------------------------------------------------------------------------------- /src/styles/images/in-nutshell-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/in-nutshell-header.png -------------------------------------------------------------------------------- /src/styles/images/jim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/jim.png -------------------------------------------------------------------------------- /src/styles/images/menu-close-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/menu-close-X.png -------------------------------------------------------------------------------- /src/styles/images/menu-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/menu-close.png -------------------------------------------------------------------------------- /src/styles/images/menu-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/menu-icon.svg -------------------------------------------------------------------------------- /src/styles/images/menu-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/menu-open.png -------------------------------------------------------------------------------- /src/styles/images/our-process-callout-bg-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/our-process-callout-bg-mobile.png -------------------------------------------------------------------------------- /src/styles/images/our-process-callout-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/our-process-callout-bg.png -------------------------------------------------------------------------------- /src/styles/images/our-story-brush-stroke-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/our-story-brush-stroke-background.png -------------------------------------------------------------------------------- /src/styles/images/our-story-stat-1-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/our-story-stat-1-background.png -------------------------------------------------------------------------------- /src/styles/images/our-story-stat-2-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/our-story-stat-2-background.png -------------------------------------------------------------------------------- /src/styles/images/phase-circle-lilac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phase-circle-lilac.png -------------------------------------------------------------------------------- /src/styles/images/phase-circle-ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phase-circle-ocean.png -------------------------------------------------------------------------------- /src/styles/images/phase-circle-sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phase-circle-sky.png -------------------------------------------------------------------------------- /src/styles/images/phase-circle-smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phase-circle-smoke.png -------------------------------------------------------------------------------- /src/styles/images/phase-circle-tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phase-circle-tiger.png -------------------------------------------------------------------------------- /src/styles/images/phases-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phases-bg.png -------------------------------------------------------------------------------- /src/styles/images/phases-mobile-bg-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phases-mobile-bg-bottom.png -------------------------------------------------------------------------------- /src/styles/images/phases-mobile-bg-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/phases-mobile-bg-top.png -------------------------------------------------------------------------------- /src/styles/images/pitch-structure-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/pitch-structure-bg.png -------------------------------------------------------------------------------- /src/styles/images/pitch-structure-mobile-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/pitch-structure-mobile-bg.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-1-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-1-v.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-1.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-2-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-2-v.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-2.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-3-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-3-v.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-3.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-4-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-4-v.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-4.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-5-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-5-v.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-5.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-6-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-6-v.png -------------------------------------------------------------------------------- /src/styles/images/portfolio-paint-stroke-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/portfolio-paint-stroke-6.png -------------------------------------------------------------------------------- /src/styles/images/quote-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/quote-background.png -------------------------------------------------------------------------------- /src/styles/images/quote-mobile-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/quote-mobile-background.png -------------------------------------------------------------------------------- /src/styles/images/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/quote.png -------------------------------------------------------------------------------- /src/styles/images/report-1-bg-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-1-bg-mobile.png -------------------------------------------------------------------------------- /src/styles/images/report-1-bg-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-1-bg-plain.png -------------------------------------------------------------------------------- /src/styles/images/report-1-bg-tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-1-bg-tablet.png -------------------------------------------------------------------------------- /src/styles/images/report-1-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-1-bg.png -------------------------------------------------------------------------------- /src/styles/images/report-gradient-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-gradient-separator.png -------------------------------------------------------------------------------- /src/styles/images/report-green-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-green-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/report-green-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-green-separator.png -------------------------------------------------------------------------------- /src/styles/images/report-lilac-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-lilac-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/report-nav-active-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/report-nav-active-bar.png -------------------------------------------------------------------------------- /src/styles/images/ring-separater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/ring-separater.png -------------------------------------------------------------------------------- /src/styles/images/short-lilac-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/short-lilac-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/short-ocean-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/short-ocean-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/short-sky-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/short-sky-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/short-tiger-brush-stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/short-tiger-brush-stroke.png -------------------------------------------------------------------------------- /src/styles/images/submit-idea-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/submit-idea-bg.png -------------------------------------------------------------------------------- /src/styles/images/submitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/submitter-icon.svg -------------------------------------------------------------------------------- /src/styles/images/team-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/team-icon.svg -------------------------------------------------------------------------------- /src/styles/images/the-10x-team-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/the-10x-team-22.png -------------------------------------------------------------------------------- /src/styles/images/the-10x-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/the-10x-team.png -------------------------------------------------------------------------------- /src/styles/images/theme-2-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/theme-2-bg.png -------------------------------------------------------------------------------- /src/styles/images/theme-5-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/theme-5-bg.png -------------------------------------------------------------------------------- /src/styles/images/twitter-share-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/images/twitter-share-img.png -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- 1 | @import "theme/styles.scss"; 2 | -------------------------------------------------------------------------------- /src/styles/mixins/fullWidthBg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/mixins/fullWidthBg.scss -------------------------------------------------------------------------------- /src/styles/mixins/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/mixins/index.scss -------------------------------------------------------------------------------- /src/styles/mixins/linkVariant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/mixins/linkVariant.scss -------------------------------------------------------------------------------- /src/styles/pages/_designing-success.scss: -------------------------------------------------------------------------------- 1 | .Tx__designing-success { 2 | @include u-padding-bottom(10); 3 | } 4 | -------------------------------------------------------------------------------- /src/styles/pages/_four-oh-four.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_four-oh-four.scss -------------------------------------------------------------------------------- /src/styles/pages/_fueling-innovation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_fueling-innovation.scss -------------------------------------------------------------------------------- /src/styles/pages/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_home.scss -------------------------------------------------------------------------------- /src/styles/pages/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_index.scss -------------------------------------------------------------------------------- /src/styles/pages/_making-each-dollar-count.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_making-each-dollar-count.scss -------------------------------------------------------------------------------- /src/styles/pages/_our-challenge-to-you.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_our-challenge-to-you.scss -------------------------------------------------------------------------------- /src/styles/pages/_our-process.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_our-process.scss -------------------------------------------------------------------------------- /src/styles/pages/_projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_projects.scss -------------------------------------------------------------------------------- /src/styles/pages/_reports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/pages/_reports.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-color.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-components.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-custom-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-custom-styles.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-general.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-general.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-spacing.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-typography.scss -------------------------------------------------------------------------------- /src/styles/theme/_uswds-theme-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/_uswds-theme-utilities.scss -------------------------------------------------------------------------------- /src/styles/theme/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/styles/theme/styles.scss -------------------------------------------------------------------------------- /src/templates/Primary/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/Footer.js -------------------------------------------------------------------------------- /src/templates/Primary/GSAFooter/gsa-logo-w100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/GSAFooter/gsa-logo-w100.png -------------------------------------------------------------------------------- /src/templates/Primary/GSAFooter/gsa-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/GSAFooter/gsa-logo.svg -------------------------------------------------------------------------------- /src/templates/Primary/GSAFooter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/GSAFooter/index.js -------------------------------------------------------------------------------- /src/templates/Primary/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/Header.js -------------------------------------------------------------------------------- /src/templates/Primary/Primary.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/Primary.test.js -------------------------------------------------------------------------------- /src/templates/Primary/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/Search.js -------------------------------------------------------------------------------- /src/templates/Primary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/templates/Primary/index.js -------------------------------------------------------------------------------- /src/test/TestProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/test/TestProvider.js -------------------------------------------------------------------------------- /src/test/utils/resizeWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/test/utils/resizeWindow.js -------------------------------------------------------------------------------- /src/test/utils/runAsyncRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/test/utils/runAsyncRender.js -------------------------------------------------------------------------------- /src/utils/registerAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/utils/registerAnalytics.js -------------------------------------------------------------------------------- /src/utils/registerFontAwesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/utils/registerFontAwesome.js -------------------------------------------------------------------------------- /src/utils/useOnPathChange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/utils/useOnPathChange.js -------------------------------------------------------------------------------- /src/utils/useScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/10x/HEAD/src/utils/useScrollToTop.js --------------------------------------------------------------------------------