Skip to content

Commit 1e6a470

Browse files
authored
Fix the position of the footer links.
1 parent 42bcd7a commit 1e6a470

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/site/navigation.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@
3232
}
3333
},
3434
"footerLinks": [
35-
{
36-
"link": "https://openjsf.org/",
37-
"text": "components.containers.footer.links.openJSFoundation"
38-
},
3935
{
4036
"link": "https://trademark-policy.openjsf.org/",
4137
"text": "components.containers.footer.links.trademarkPolicy"
@@ -55,6 +51,10 @@
5551
{
5652
"link": "https://github.com/nodejs/node/security/policy",
5753
"text": "components.containers.footer.links.security"
54+
},
55+
{
56+
"link": "https://openjsf.org/",
57+
"text": "components.containers.footer.links.openJSFoundation"
5858
}
5959
],
6060
"socialLinks": [

packages/ui-components/src/Containers/Footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const Footer: FC<FooterProps> = ({
8282
as={as}
8383
pathname={pathname}
8484
>
85-
{openJSlink.text}
85+
&copy; {openJSlink.text}
8686
</NavItem>
8787

8888
<div className={styles.social}>

0 commit comments

Comments
 (0)