Skip to content

Commit

Permalink
fix: fixed page load speed
Browse files Browse the repository at this point in the history
tried to change link
  • Loading branch information
a0v0 authored May 12, 2024
2 parents 541c2c2 + bb035c7 commit cef1506
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
sitemap.xml
sitemap*.xml

# dependencies
node_modules
Expand Down
8 changes: 1 addition & 7 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,7 @@ export const Navbar: FC<NavbarProps> = ({routes, slug, tag}) => {
}}
>
{category.routes.map((tool, index) => (
<DropdownItem
className="text-white"
as={Link}
key={index}
href={tool.href}
startContent={tool.icon}
>
<DropdownItem href={tool.href} key={index} startContent={tool.icon}>
{tool.title}
</DropdownItem>
))}
Expand Down

0 comments on commit cef1506

Please sign in to comment.