@@ -62,7 +62,9 @@ const MainFooter = ({ isSmallDisplay, isLargeDisplay, expanded, toggleExpanded }
6262 { isSmallDisplay ? null : repositoryLink ( ) }
6363 { isLargeDisplay ? (
6464 < Box display = 'flex' >
65- < Box > { privacyPolicy ( ) } </ Box >
65+ < Box > { ossAccess ( ) } </ Box >
66+ < Box ml = { itemSpacing } > { privacyPolicy ( ) } </ Box >
67+ < Box ml = { itemSpacing } > { securityPolicy ( ) } </ Box >
6668 < Box ml = { itemSpacing } > { termsOfUse ( ) } </ Box >
6769 < Box ml = { itemSpacing } > { compliance ( ) } </ Box >
6870 < Box ml = { itemSpacing } > { legalResources ( false ) } </ Box >
@@ -102,7 +104,9 @@ const FooterContent: FunctionComponent<{ expanded: boolean }> = ({ expanded }) =
102104 return (
103105 < Box display = 'flex' flexDirection = 'column' alignItems = 'stretch' >
104106 < Box display = 'flex' flexDirection = 'column' alignItems = 'flex-end' >
107+ < Box mb = { itemSpacing } > { ossAccess ( ) } </ Box >
105108 < Box mb = { itemSpacing } > { privacyPolicy ( ) } </ Box >
109+ < Box mb = { itemSpacing } > { securityPolicy ( ) } </ Box >
106110 < Box mb = { itemSpacing } > { termsOfUse ( ) } </ Box >
107111 < Box mb = { itemSpacing } > { compliance ( ) } </ Box >
108112 < Box mb = { itemSpacing } > { legalResources ( isSmallDisplay ) } </ Box >
@@ -135,12 +139,24 @@ const repositoryLink = () => (
135139 </ Link >
136140) ;
137141
142+ const ossAccess = ( ) => (
143+ < Link href = 'https://managed.open-vsx.org/contact' sx = { [ styles . link , styles . legalText ] } >
144+ OSS Access
145+ </ Link >
146+ ) ;
147+
138148const privacyPolicy = ( ) => (
139149 < Link href = 'https://www.eclipse.org/legal/privacy/' sx = { [ styles . link , styles . legalText ] } >
140150 Privacy Policy
141151 </ Link >
142152) ;
143153
154+ const securityPolicy = ( ) => (
155+ < Link href = '/security/' sx = { [ styles . link , styles . legalText ] } >
156+ Security Policy
157+ </ Link >
158+ ) ;
159+
144160const termsOfUse = ( ) => < LegalLink to = '/terms-of-use' > Terms of Use</ LegalLink > ;
145161
146162const compliance = ( ) => (
0 commit comments