Skip to content

Commit

Permalink
fixed the page not found text
Browse files Browse the repository at this point in the history
  • Loading branch information
MeetDOD committed Jul 13, 2024
1 parent b316637 commit 7f03779
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/src/pages/PageNotFound.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PageNotFound = () => {
<img src={notfound} alt='Page Not Found' className='w-[400px]' />
<p className='text-center mb-20'>
<span className='text-red-600 font-bold text-6xl'>404</span><br />
<span className='text-gray-200 ite text-3xl font-semibold'>Page Not Found</span>
<span className='text-gray-800 text-3xl font-bold dark:text-gray-200'>Page Not Found</span>
</p>
</div>
)
Expand Down
1 change: 0 additions & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import CodeEditor from "./pages/CodeEditor";
import Contributors from "./pages/Contributors";
import userBlock from "./hooks/userBlock";
import Blocked from "./pages/Blocked";

// import axios from "axios";
// axios.defaults.baseURL = "http://localhost:3001/";

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/PageNotFound.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const PageNotFound = () => {
<img src={notfound} alt='Page Not Found' className='w-[400px]' />
<p className='text-center mb-20'>
<span className='text-red-600 font-bold text-6xl'>404</span><br />
<span className='text-gray-200 ite text-3xl font-semibold'>{t('notfound')}</span>
<span className='text-gray-800 text-3xl font-bold dark:text-gray-200'>{t('notfound')}</span>
</p>
</div>
)
Expand Down

0 comments on commit 7f03779

Please sign in to comment.