Use prettier to order tailwind classes

This commit is contained in:
Luke Vella 2022-04-16 10:25:29 +01:00
parent c5c2816c3d
commit eee23c1bb5
52 changed files with 268 additions and 262 deletions

View file

@ -22,19 +22,19 @@ const ErrorPage: React.VoidFunctionComponent<ComponentProps> = ({
}) => {
return (
<StandardLayout>
<div className="h-full bg-gray-50 px-4 py-8 flex items-center justify-center lg:w-[1024px] max-w-full">
<div className="flex h-full max-w-full items-center justify-center bg-gray-50 px-4 py-8 lg:w-[1024px]">
<Head>
<title>{title}</title>
<meta name="robots" content="noindex,nofollow" />
</Head>
<div className="flex items-start">
<div className="text-center">
<Icon className="w-24 inline-block mb-4 text-slate-400" />
<Icon className="mb-4 inline-block w-24 text-slate-400" />
<div className="text-3xl font-bold uppercase text-indigo-500 ">
{title}
</div>
<p>{description}</p>
<div className="flex space-x-3 justify-center">
<div className="flex justify-center space-x-3">
<Link href="/" passHref={true}>
<a className="btn-default">Go to home</a>
</Link>