diff options
Diffstat (limited to 'src/constants/footer-items.ts')
| -rw-r--r-- | src/constants/footer-items.ts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/constants/footer-items.ts b/src/constants/footer-items.ts new file mode 100644 index 0000000..6538d71 --- /dev/null +++ b/src/constants/footer-items.ts @@ -0,0 +1,24 @@ +import type { FooterItem } from '@amp/web-app-components/src/components/Footer/types'; + +export const items: FooterItem[] = [ + { + id: 'terms-of-use', + url: 'AMP.Shared.Footer.TermsOfUse.URL', + locKey: 'AMP.Shared.Footer.TermsOfUse.Text', + }, + { + id: 'privacy-policy', + url: 'ASE.Web.AppStore.Shared.Footer.PrivacyPolicy.URL', + locKey: 'ASE.Web.AppStore.Shared.Footer.PrivacyPolicy.Text', + }, + { + id: 'cookie-policy', + url: 'AMP.Shared.Footer.CookiePolicy.URL', + locKey: 'AMP.Shared.Footer.CookiePolicy.Text', + }, + { + id: 'get-help', + url: 'ASE.Web.AppStore.Shared.Footer.GetHelp.URL', + locKey: 'ASE.Web.AppStore.Shared.Footer.GetHelp.Text', + }, +]; |
