Skip to content

Commit

Permalink
fix: update links to open in a new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
dy0gu committed Sep 13, 2024
1 parent 1da8cb1 commit 5ffdfde
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"check:fix": "biome check --write"
},
"dependencies": {
"@playwright/test": "^1.47.1",
"@remix-run/dev": "^2.12.0",
"@remix-run/node": "^2.12.0",
"@remix-run/react": "^2.12.0",
Expand All @@ -32,6 +31,7 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.47.1",
"@biomejs/biome": "~1.9.0",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
Expand Down
4 changes: 3 additions & 1 deletion src/components/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ function Navigation({ className, links }: NavigationProps) {
// biome-ignore lint/suspicious/noArrayIndexKey: mapped object is static
<li key={index}>
<a
href={item.href}
className="duration-500 text-zinc-400 hover:text-zinc-100"
href={item.href}
target="_blank"
rel="noreferrer"
>
{item.name}
</a>
Expand Down

0 comments on commit 5ffdfde

Please sign in to comment.