Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
patelvivekdev committed May 7, 2024
1 parent a35e149 commit 37293b2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/tag/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function TagPage({ params }: { params: any }) {

return (
<section className='min-h-screen mt-16 sm:mt-40 w-11/12 sm:w-3/4 mx-auto gap-4 mb-5'>
<Link href='/tags'>
<Link href='/tag'>
<Button
variant='outline'
className='
Expand Down
2 changes: 1 addition & 1 deletion components/BlogPost.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async function InternalBlogPost({
{tags?.map((tag) => (
<Link
key={tag}
href={`/tags/${tag.toLowerCase()}`}
href={`/tag/${tag.toLowerCase()}`}
className='mr-2 px-3 py-1 text-sm font-semibold rounded-lg border-2 border-indigo-700 text-neutral-900 dark:text-white hover:underline'
>
{tag.toUpperCase()}
Expand Down
2 changes: 1 addition & 1 deletion components/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function ProjectCard({
{tags.map((tag) => (
<Link
key={tag}
href={`/tags/${tag.toLowerCase()}`}
href={`/tag/${tag.toLowerCase()}`}
className='mr-2 px-3 py-1 text-sm font-semibold rounded-lg border-2 border-indigo-700 text-neutral-900 dark:text-white hover:underline'
>
{tag.toUpperCase()}
Expand Down
2 changes: 1 addition & 1 deletion components/SnippetCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const SnippetCard = ({
{tags?.map((tag) => (
<Link
key={tag}
href={`/tags/${tag.toLowerCase()}`}
href={`/tag/${tag.toLowerCase()}`}
className='mr-2 px-3 py-1 text-sm font-semibold rounded-lg border-2 border-indigo-700 text-neutral-900 dark:text-white hover:underline'
>
{tag.toUpperCase()}
Expand Down
2 changes: 1 addition & 1 deletion components/navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const links = [
{ link: '/', name: 'Home' },
{ link: '/projects', name: 'Projects' },
{ link: '/blog', name: 'Blogs' },
{ link: '/tag', name: 'Tags' },
{ link: '/snippet', name: 'Snippets' },
{ link: '/tag', name: 'Tags' },
{ link: '/contact', name: 'Contact' },
];

Expand Down

1 comment on commit 37293b2

@vercel
Copy link

@vercel vercel bot commented on 37293b2 May 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.