Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
annuk123 authored Oct 11, 2024
1 parent fb79cb8 commit 427bfcb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22",
"@types/node": "^22.7.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"daisyui": "^4.12.10",
Expand All @@ -37,7 +37,7 @@
"postcss": "^8",
"prettier": "3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5"
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,md,json,yml,yaml}": [
Expand Down
6 changes: 3 additions & 3 deletions src/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ const Navbar: React.FC = () => {
<div
className={`md:flex space-x-4 ${isOpen ? "block" : "hidden"} md:block`}
>
<div className="flex space-x-4 items-center">
<div className="flex space-x-4 items-center mr-6">
<Link
href="https://github.com/Bashamega/TrendTrack"
target="_blank"
className="flex items-center"
>
<FaGithub /> Github
<FaGithub className="mr-2" /> Github
</Link>
<Link
href="https://github.com/EddieHubCommunity/github-trending-repos"
className="hover:underline"
className="hover:underline mr-4"
>
API
</Link>
Expand Down

0 comments on commit 427bfcb

Please sign in to comment.