-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<template> | ||
<section class="bg-gray-100 dark:bg-gray-800 text-black dark:text-gray-200"> | ||
<div class="container mx-auto py-20 px-4 text-center print:text-black"> | ||
<h1 class="text-6xl font-extrabold animate-pulse">404</h1> | ||
<h2 class="text-2xl font-bold">Not Found</h2> | ||
<p class="mt-4">The page you are looking for does not exist.</p> | ||
</div> | ||
</section> | ||
<section class="text-center mt-10 flex gap-6 flex-col lg:w-[55%] mx-auto sm:w-full items-center justify-center"> | ||
<img src="https://i.imgflip.com/6pvb0b.png" alt="404" class="rounded-xl w-[85%]"> | ||
<a href="/" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-6 sm:w-[50%] md:w-[30%] lg:w-[20%]">Go Home</a> | ||
</section> | ||
</template> |