this repo has no description
1import type { FooterItem } from '@amp/web-app-components/src/components/Footer/types';
2
3export const items: FooterItem[] = [
4 {
5 id: 'terms-of-use',
6 url: 'AMP.Shared.Footer.TermsOfUse.URL',
7 locKey: 'AMP.Shared.Footer.TermsOfUse.Text',
8 },
9 {
10 id: 'privacy-policy',
11 url: 'ASE.Web.AppStore.Shared.Footer.PrivacyPolicy.URL',
12 locKey: 'ASE.Web.AppStore.Shared.Footer.PrivacyPolicy.Text',
13 },
14 {
15 id: 'cookie-policy',
16 url: 'AMP.Shared.Footer.CookiePolicy.URL',
17 locKey: 'AMP.Shared.Footer.CookiePolicy.Text',
18 },
19 {
20 id: 'get-help',
21 url: 'ASE.Web.AppStore.Shared.Footer.GetHelp.URL',
22 locKey: 'ASE.Web.AppStore.Shared.Footer.GetHelp.Text',
23 },
24];