Skip to content

Commit

Permalink
style: update error page
Browse files Browse the repository at this point in the history
  • Loading branch information
kyziq committed Jan 13, 2024
1 parent 005ae1d commit ce308e8
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions src/pages/Error.jsx
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
import bobotimg from '../assets/images/4errorPage/404image.png';
import { Image } from '@nextui-org/react';

const ErrorPage = () => {
return (
<div className="flex flex-col justify-start items-start min-h-screen bg-gray-100 overflow-hidden p-10 ml-20">
<div className="flex items-center justify-between w-full p-10 ml-20">
<div className="p-10 ml-20">
<h1 className="text-4xl font-bold text-black-500 mb-10 mt-12">
ArtistryHub.
</h1>
<h2 className="text-3xl font-bold text-black-500 mb-5">404 Error.</h2>
<h2 className="text-3xl font-bold text-red-500">
<div className="flex flex-col justify-start items-start min-h-screen bg-gray-100 overflow-hidden p-4 md:p-10 ml-0 md:ml-20">
<div className="flex flex-col md:flex-row items-center justify-between w-full p-4 md:p-10 ml-0 md:ml-20">
<div className="mb-4 md:mb-0 md:p-10 md:ml-20">
<h2 className="text-4xl md:text-5xl font-extrabold text-gray-900">
404 Error
</h2>
<h2 className="text-3xl md:text-4xl font-bold text-red-600">
Oops! Something went wrong.
</h2>
<p className="font-bold text-gray-400 mt-3">
This page does not exist.
<p className="text-lg font-medium text-gray-500">
The page you are looking for does not exist or has been moved.
</p>
</div>
<div className="text-6xl p-10 ml-20">
{' '}
<img src={bobotimg} alt="Bot Image" />{' '}
<div className="text-4xl md:text-6xl p-4 md:p-10 ml-0 md:ml-20">
<Image src={bobotimg} alt="Bot Image" className="max-w-full h-auto" />
</div>
</div>
</div>
Expand Down

0 comments on commit ce308e8

Please sign in to comment.