Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | import { ROUTES } from "../../constants/url";
export type Link = {
display: string;
url: string;
testId: string;
isExternal?: boolean;
};
export const FOOTER_LINKS: Record<string, Link> = {
SERVICE_TERMS: {
display: "AWS Service Terms",
url: "https://aws.amazon.com/service-terms/",
testId: "service-terms",
},
PRIVACY: {
display: "Privacy",
url: "https://aws.amazon.com/privacy/",
testId: "privacy",
},
SITE_TERMS: {
display: "Construct Hub Site Terms",
url: ROUTES.SITE_TERMS,
testId: "site-terms",
isExternal: false,
},
LEGAL: {
display: "Legal",
url: "https://aws.amazon.com/legal/",
testId: "legal",
},
GITHUB: {
display: "GitHub",
url: "https://github.com/cdklabs/construct-hub",
testId: "github",
},
} as const;
export const DISCLAIMER = "2022 Amazon Web Services, Inc. All rights reserved.";
|