Files
lynira/src/server/html/error.ts
2025-08-11 18:28:41 -07:00

44 lines
1.3 KiB
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
export const error = `<!DOCTYPE html>
<html>
<head>
<title>Lynira</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Link shortener service managed via a Discord bot." />
<script src="https://cdn.nhcarrigan.com/headers/index.js" async defer></script>
</head>
<body>
<main>
<h1>Oh dear!</h1>
<img src="https://cdn.nhcarrigan.com/new-avatars/lynira.png" width="250" alt="Lynira" />
<section>
<p>Something went wrong while trying to redirect you! Please try again later.</p>
</section>
<section>
<h2>Need Help?</h2>
<p>
<a href="https://git.nhcarrigan.com/nhcarrigan/lynira">
<i class="fa-solid fa-code"></i> Source Code
</a>
</p>
<p>
<a href="https://docs.nhcarrigan.com/">
<i class="fa-solid fa-book"></i> Documentation
</a>
</p>
<p>
<a href="https://chat.nhcarrigan.com">
<i class="fa-solid fa-circle-info"></i> Support
</a>
</p>
</section>
</main>
</body>
</html>`;