}
diff --git a/src/components/SitewideHeader/SitewideHeader.js b/src/components/SitewideHeader/SitewideHeader.js
index b7e169b08..e29e48662 100644
--- a/src/components/SitewideHeader/SitewideHeader.js
+++ b/src/components/SitewideHeader/SitewideHeader.js
@@ -269,7 +269,7 @@ const SitewideHeader = () => {
Get a Demo
@@ -280,140 +280,4 @@ const SitewideHeader = () => {
);
};
-export default SitewideHeader;
-
-
-
-
-
-// import React from 'react';
-// import { Popover } from '@headlessui/react';
-// import classnames from 'classnames';
-// import {
-// CodeIcon,
-// BookOpenIcon,
-// ChatIcon,
-// ShieldCheckIcon,
-// AcademicCapIcon,
-// PlayIcon,
-// NewspaperIcon,
-// PlusCircleIcon,
-// CheckCircleIcon,
-// } from '@heroicons/react/outline';
-// import { Button } from 'components';
-
-// import Logo from '../Logo';
-// import TopNavItem from './TopNavItem';
-// import OpenMenuButton from './OpenMenuButton';
-// import TopNavDropdownItem from './TopNavDropdownItem';
-// import DrawerMenu from './DrawerMenu';
-// import TopBanner from 'components/TopBanner';
-// import WhitepaperVs from '../TopBanner/Whitepaper';
-
-// const features = [
-// {
-// name: 'Catalog: software, teams & resources',
-// description: 'All your tech assets on a single glass pane.',
-// to: '/product/catalog/',
-// icon: NewspaperIcon,
-// },
-// {
-// name: 'Scaffolder: create and expand',
-// description: 'Accelerate your development initatives.',
-// to: '/product/scaffolder/',
-// icon: PlusCircleIcon,
-// },
-// {
-// name: 'Docs: centralized yet distributed',
-// description: 'Find everyone’s docs in the same place.',
-// to: '/product/documentation/',
-// icon: BookOpenIcon,
-// },
-// {
-// name: 'Tech Insights: Scorecards for Backstage',
-// description: 'Measure and improve software quality.',
-// to: '/product/tech-insights/',
-// icon: CheckCircleIcon,
-// },
-// ];
-
-// const learn = [
-// {
-// name: 'Backstage Bites',
-// description: 'Short videos to teach Backstage concepts.',
-// to: '/backstage-bites/',
-// icon: PlayIcon,
-// },
-// {
-// name: 'Backstage Plugins',
-// description: 'Browse our Backstage plugin marketplace.',
-// to: '/backstage/plugins/',
-// icon: CodeIcon,
-// },
-// {
-// name: 'Blog',
-// description: 'Read our posts on Backstage and Roadie.',
-// to: '/blog/',
-// icon: BookOpenIcon,
-// },
-// {
-// name: 'Case Studies',
-// description: 'How organisations succeed with Backstage',
-// to: '/case-studies/',
-// icon: ShieldCheckIcon,
-// },
-// {
-// name: 'Documentation',
-// description: 'Set up your Roadie Backstage experience.',
-// to: '/docs/',
-// icon: AcademicCapIcon,
-// },
-// {
-// name: 'Chat with us on Discord',
-// description: 'Get support or provide feedback.',
-// to: 'https://discord.gg/W3qEMhmx4f',
-// icon: ChatIcon,
-// },
-// ];
-
-// const SitewideHeader = ({
-// ctaTo = '/request-demo/',
-// ctaText = 'Get a Demo',
-// }) => (
-// <>
-//
-// <>
-//
-//
-//
-//
-//
-//
-//
-
-//
-//
-//
-//
-
-//
-//
-//
-//
-//
-//
-//
-//
-
-//
-//
-//
-//
-
-//
-// >
-//
-// >
-// );
-
-// export default SitewideHeader;
+export default SitewideHeader;
\ No newline at end of file
diff --git a/src/components/forms/HelpText.js b/src/components/forms/HelpText.js
index 45eeb78a5..f9fac0291 100644
--- a/src/components/forms/HelpText.js
+++ b/src/components/forms/HelpText.js
@@ -2,9 +2,9 @@ import React from 'react';
import classnames from 'classnames';
const HelpText = ({ className, state, message }) => {
- const rootClassName = classnames('text-sm', {
- 'text-gray-600': !state || state === '',
- 'text-primary-700': state === 'error',
+ const rootClassName = classnames('Text size-3', {
+ 'lowContrast': !state || state === '',
+ 'red': state === 'error',
}, className);
return (
diff --git a/src/components/forms/TextField.js b/src/components/forms/TextField.js
index 3ba4783b6..ef0081b9d 100644
--- a/src/components/forms/TextField.js
+++ b/src/components/forms/TextField.js
@@ -22,7 +22,7 @@ const TextField = ({
-
diff --git a/src/pages/backstage-weekly.js b/src/pages/backstage-weekly.js
index 3f80761e6..b6c5da12c 100644
--- a/src/pages/backstage-weekly.js
+++ b/src/pages/backstage-weekly.js
@@ -86,16 +86,11 @@ const BackstageWeekly = ({ data }) => {
-
- Backstage Weekly
-
-
-
- Get the latest news, deep dives into Backstage features, and a roundup of recent
- open-source action.
-
-
-
+
Backstage Weekly
+
+ Get the latest news, deep dives into Backstage features, and a roundup of recent
+ open-source action.
+
{
setModalOpen(open);
@@ -109,9 +104,9 @@ const BackstageWeekly = ({ data }) => {
-
+
Previous issues
-
+
diff --git a/src/stylesheets/Text.css b/src/stylesheets/Text.css
index 4e6c679ce..7e26e58cc 100644
--- a/src/stylesheets/Text.css
+++ b/src/stylesheets/Text.css
@@ -367,6 +367,10 @@
color: var(--orange-11);
}
+.Text.red {
+ color: var(--red-11);
+}
+
.Text.white {
color: white;
}