Ricky
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
6 additions and
1 deletions
-
beta/src/components/Layout/Footer.tsx
-
beta/src/components/Layout/Sidebar/SidebarRouteTree.tsx
-
beta/src/sidebarHome.json
|
|
@ -108,6 +108,7 @@ export function Footer() { |
|
|
|
<FooterLink href="/community/meet-the-team"> |
|
|
|
Meet the Team |
|
|
|
</FooterLink> |
|
|
|
<FooterLink href="https://reactjs.org/blog">Blog</FooterLink> |
|
|
|
{/* <FooterLink href="/">Community Resources</FooterLink> */} |
|
|
|
</div> |
|
|
|
<div className="flex flex-col"> |
|
|
|
|
|
@ -148,7 +148,7 @@ export function SidebarRouteTree({ |
|
|
|
<li key={`${title}-${path}-${level}-link`}> |
|
|
|
<SidebarLink |
|
|
|
isPending={pendingRoute === pagePath} |
|
|
|
href={pagePath} |
|
|
|
href={path.startsWith('https://') ? path : pagePath} |
|
|
|
selected={selected} |
|
|
|
level={level} |
|
|
|
title={title} |
|
|
|
|
|
@ -11,6 +11,10 @@ |
|
|
|
"title": "Overview", |
|
|
|
"path": "/" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"title": "Blog", |
|
|
|
"path": "https://reactjs.org/blog" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"title": "Community", |
|
|
|
"path": "/community", |
|
|
|