Skip to content

Commit

Permalink
fix: fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
RyukTheCoder committed Jul 27, 2024
1 parent b1c709f commit f63ded9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/common/Error/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function Error() {
</div>
<button
onClick={() => router.reload()}
className="text-baseForeground bg-primary-600 py-10 md:py-15 px-20 mt-20 md:mt-50 text-center rounded-full w-[224px] text-14 md:text-18 font-medium">
className="text-baseForeground bg-primary-600 py-8 md:py-10 px-20 mt-20 md:mt-50 text-center rounded-full w-[280px] md:w-[228px] text-16 md:text-18 font-medium">
Reload
</button>
</div>
Expand Down
7 changes: 2 additions & 5 deletions components/search/NotFound/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,13 @@ function NotFound(props: PropsType) {
Oops! We couldn't find what you are looking for
</div>
<div className="text-14 text-center md:text-20 text-neutral-800 mt-10">
{`The search string you entered was: ${query || ''}`}
The search string you entered was: ${query || ''}
<br />
This is an invalid search string.
</div>
{/* <div className="text-14 text-center md:text-20 text-neutral-800">
This is an invalid search string.
</div> */}
<Link
href="/"
className="text-baseForeground bg-primary-600 py-10 md:py-15 px-20 mt-20 md:mt-50 text-center rounded-full w-[224px] text-14 md:text-18 font-medium">
className="text-baseForeground bg-primary-600 py-8 md:py-10 px-20 mt-20 md:mt-50 text-center rounded-full w-[280px] md:w-[228px] text-16 md:text-18 font-medium">
Back To Home
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/404.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function NotFoundPage() {
</div>
<Link
href="/"
className="text-baseForeground bg-primary-600 py-15 px-20 mt-20 md:mt-50 text-center rounded-full w-[228px] text-14 md:text-18 font-medium">
className="text-baseForeground bg-primary-600 py-8 md:py-10 px-20 mt-20 md:mt-50 text-center rounded-full w-[280px] md:w-[228px] text-16 md:text-18 font-medium">
Back To Home
</Link>
</div>
Expand Down

0 comments on commit f63ded9

Please sign in to comment.