Skip to content

Commit

Permalink
Add company updates links in the menu and footer resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Breno committed Dec 4, 2024
1 parent 6bc57d4 commit ee455ea
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
6 changes: 6 additions & 0 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@ const Footer = () => {
>
Blogs
</FooterLink>
<FooterLink
to="/company-updates/"
ariaLabel="Explore Estuary and Flow updates."
>
Company Updates
</FooterLink>
<FooterLink
to="/blog/tutorial/"
ariaLabel="Explore blog posts with tutorials"
Expand Down
21 changes: 14 additions & 7 deletions src/components/HeaderNavbar/Resources/items.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,25 @@ export const read = [
to: '/blog/data-engineering',
Image: () => <StaticImage src="../../../svgs/blog.svg" alt="Blog" />,
},
{
name: 'Company Updates',
to: '/company-updates',
Image: () => (
<StaticImage src="../../../svgs/blog.svg" alt="Company Updates" />
),
},
{
name: 'Docs & Guides',
to: 'https://docs.estuary.dev',
Image: () => <DocIcon color="#5072EB" width={iconSize} />,
},
{
name: 'About us',
to: '/about',
Image: () => (
<StaticImage src="../../../svgs/estuary-icon.svg" alt="About us" />
),
},
{
name: 'Status',
to: statusPageUrl,
Expand All @@ -29,13 +43,6 @@ export const read = [
/>
),
},
{
name: 'About us',
to: '/about',
Image: () => (
<StaticImage src="../../../svgs/estuary-icon.svg" alt="About us" />
),
},
];

export const listen = [
Expand Down

0 comments on commit ee455ea

Please sign in to comment.