Skip to content

Instantly share code, notes, and snippets.

@librz
Last active August 17, 2023 01:41
Show Gist options
  • Save librz/ee409bd567c04b23c75d42cd9d9a8507 to your computer and use it in GitHub Desktop.
Save librz/ee409bd567c04b23c75d42cd9d9a8507 to your computer and use it in GitHub Desktop.
404 page using tailwind
<section className="h-full w-full flex justify-center items-center gap-8 p-6 flex-col md:flex-row">
<div className="rounded-full w-36 h-36 bg-black font-semibold flex justify-center items-center text-6xl text-white">
404
</div>
<div className="flex flex-col items-end">
<div className="text-5xl">Oops</div>
<div className="text-2xl mt-2 mb-6 text-end">This page doesn't exist</div>
<span className="bg-black text-white px-4 py-2 rounded-md cursor-pointer">
Home
</span>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment