Skip to content

Commit b2073a6

Browse files
authored
Merge pull request #81 from storybookjs/remove-status-page
Remove status page link from Footer
2 parents 4c13d17 + f7bb1cc commit b2073a6

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/components/Footer/Footer.stories.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,19 @@ const links = {
3131
tutorials: { url: 'https://storybook.js.org/tutorials' },
3232
changelog: { url: '/releases', linkWrapper: FakeGatsbyLink },
3333
telemetry: { url: '/telemetry', linkWrapper: FakeGatsbyLink },
34-
status: { url: 'https://storybook.js.org/status' },
3534
showcase: { url: 'https://storybook.js.org/showcase' },
3635
projects: { url: 'https://storybook.js.org/showcase/projects' },
3736
componentGlossary: { url: 'https://storybook.js.org/showcase/glossary' },
3837
integrations: { url: '/integrations', linkWrapper: FakeGatsbyLink },
3938
getInvolved: { url: '/community', linkWrapper: FakeGatsbyLink },
4039
blog: { url: 'https://storybook.js.org/blog' },
4140
hiring: { url: 'https://www.chromatic.com/company/jobs' },
41+
enterprise: {
42+
url: 'https://www.chromatic.com/sales?utm_source=storybook_website&utm_medium=link&utm_campaign=storybook',
43+
},
44+
chromatic: {
45+
url: 'https://www.chromatic.com/storybook?utm_source=storybook_website&utm_medium=link&utm_campaign=storybook',
46+
},
4247
};
4348

4449
const Template = (args) => (

src/components/Footer/Footer.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ const footerGroups = (links: Links) => ({
2525
{ label: 'Tutorials', link: links.tutorials },
2626
{ label: 'Changelog', link: links.changelog },
2727
{ label: 'Telemetry', link: links.telemetry },
28-
{ label: 'Status', link: links.status },
2928
],
3029
community: [
3130
{ label: 'Addons', link: links.integrations },

src/components/links-context.ts

-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export interface Links {
1313
tutorials: LinkItem;
1414
changelog: LinkItem;
1515
telemetry: LinkItem;
16-
status: LinkItem;
1716
showcase: LinkItem;
1817
projects: LinkItem;
1918
componentGlossary: LinkItem;
@@ -33,7 +32,6 @@ export const defaultLinks = {
3332
tutorials: { url: 'https://storybook.js.org/tutorials' },
3433
changelog: { url: 'https://storybook.js.org/releases' },
3534
telemetry: { url: 'https://storybook.js.org/telemetry' },
36-
status: { url: 'https://storybook.js.org/status' },
3735
showcase: { url: 'https://storybook.js.org/showcase' },
3836
projects: { url: 'https://storybook.js.org/showcase/projects' },
3937
componentGlossary: { url: 'https://storybook.js.org/showcase/glossary' },

0 commit comments

Comments
 (0)