mirror of
https://github.com/tiennm99/is-a-good-dev.git
synced 2026-09-13 14:19:55 +00:00
* rename old file (temp) & tailwind config * pages test with directory * revert directory addition ~ Pages doesnt allow there to be a custom directory to serve site from, only preset. * 404 change from md * add kofi widget * add kofi widget * defer kofi build + add fontawesome * remove editor file * 404 basic content * 404- styling Repsonsiveness needed * typing animation??? * del, it didnt work * revert * introduction piece * grid creation and styling * layout * finish header content * add new domain * add custom redirect links * move new site (in dev) into dir
31 lines
1.8 KiB
HTML
31 lines
1.8 KiB
HTML
<!doctype html> <html lang="en">
|
|
<head>
|
|
<meta name="charset" content="utf-8">
|
|
<meta name="viewport" content="width=device-width,intitial-scale=1.0">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script src="tailwind.config.js"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
|
|
<title>is-a-good.dev ~ Free subdomains for developers</title>
|
|
<meta name="title" content="is-a-good.dev ~ Free subdomains for developers">
|
|
<meta name="description" content="Free subdomains for developers around the globe.">
|
|
</head>
|
|
<body class="bg-bg">
|
|
<div class="flex flex-col text-text mx-auto bg-bg-accent w-4/12 p-4 mt-12 rounded">
|
|
<h1 class="font-semibold text-2xl my-2">Page Not Found</h1>
|
|
<span class="my-1">We couldn't find that page for you. This could mean that the page doesn't exist or has moved.</span>
|
|
<span class="my-1">If you think this was an error, please report it <a class="text-accent hover:underline" target="_blank" href="https://github.com/is-a-good-dev/register/issues/new?labels=Issue,Bug&title=Website+Bug+Report">here</a>.</span>
|
|
<a class="hover:ring hover:ring-accent cursor-pointer w-3/12 my-2 text-center p-2 mx-auto bg-bg" href="/">Return Home</a>
|
|
</div>
|
|
|
|
<!-- Kofi widget -->
|
|
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
|
|
<script defer>
|
|
kofiWidgetOverlay.draw('wclarkedev', {
|
|
'type': 'floating-chat',
|
|
'floating-chat.donateButton.text': 'Support Us',
|
|
'floating-chat.donateButton.background-color': '#80C1F5',
|
|
'floating-chat.donateButton.text-color': '#fff'
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |