Skip to content

Commit 81b274c

Browse files
authored
Merge pull request #3387 from EclipseFdn/contact-us-updates
Update Footer
2 parents 5d24ef1 + 05ce01f commit 81b274c

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ If you want to refute a previously granted ownership, please comment on the corr
2020
Enable Yarn, install dependencies, build assets and start a dev server:
2121

2222
```bash
23+
cd website
2324
corepack enable
2425
corepack prepare yarn@stable --activate
2526
yarn --cwd website

website/src/footer-content.tsx

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ const MainFooter = ({isSmallDisplay, isLargeDisplay}: MainFooterProps) => {
6161
<Box ml={itemSpacing}>
6262
{termsOfUse()}
6363
</Box>
64-
<Box ml={itemSpacing}>
64+
{/* <Box ml={itemSpacing}>
6565
{publisherAgreement()}
66-
</Box>
66+
</Box> */}
6767
<Box ml={itemSpacing}>
68-
{copyrightAgent()}
68+
{compliance()}
6969
</Box>
7070
<Box ml={itemSpacing}>
7171
{legalResources()}
@@ -106,11 +106,11 @@ const FooterContent: FunctionComponent<{ expanded: boolean }> = ({ expanded }) =
106106
<Box mb={itemSpacing}>
107107
{termsOfUse()}
108108
</Box>
109-
<Box mb={itemSpacing}>
109+
{/* <Box mb={itemSpacing}>
110110
{publisherAgreement()}
111-
</Box>
111+
</Box> */}
112112
<Box mb={itemSpacing}>
113-
{copyrightAgent()}
113+
{compliance()}
114114
</Box>
115115
<Box mb={itemSpacing}>
116116
{legalResources()}
@@ -136,7 +136,7 @@ const repositoryLink = () =>
136136

137137
const privacyPolicy = () =>
138138
<Link
139-
href='https://www.eclipse.org/legal/privacy.php'
139+
href='https://www.eclipse.org/legal/privacy/'
140140
sx={[styles.link, styles.legalText]}>
141141
Privacy Policy
142142
</Link>;
@@ -146,21 +146,21 @@ const termsOfUse = () =>
146146
Terms of Use
147147
</LegalLink>;
148148

149-
const publisherAgreement = () =>
150-
<LegalLink to='/publisher-agreement-v1.0'>
151-
Publisher Agreement
152-
</LegalLink>;
149+
// const publisherAgreement = () =>
150+
// <LegalLink to='/publisher-agreement-v1.0'>
151+
// Publisher Agreement
152+
// </LegalLink>;
153153

154-
const copyrightAgent = () =>
154+
const compliance = () =>
155155
<Link
156-
href='https://www.eclipse.org/legal/copyright.php'
156+
href='https://www.eclipse.org/legal/compliance/'
157157
sx={[styles.link, styles.legalText]}>
158-
Copyright Agent
158+
Compliance
159159
</Link>;
160160

161161
const legalResources = () =>
162162
<Link
163-
href='http://www.eclipse.org/legal'
163+
href='http://www.eclipse.org/legal/'
164164
sx={[styles.link, styles.legalText]}>
165165
Legal Resources
166166
</Link>;
@@ -170,7 +170,7 @@ const copyrightText = () =>
170170
Copyright &copy; <Link
171171
href='https://www.eclipse.org'
172172
sx={styles.link}>
173-
Eclipse Foundation, Inc.
173+
Eclipse Foundation, AISBL.
174174
</Link>
175175
</Box>;
176176

0 commit comments

Comments
 (0)