mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 09:21:09 +02:00
Move inactive projects out of active workspace: - bauntown (community website) - maerchenzauber (AI story generation) - memoro (voice memo app) - news (news aggregation) - nutriphi (nutrition tracking) - reader (reading app) - uload (URL shortener) - wisekeep (AI wisdom extraction) Update CLAUDE.md documentation: - Add presi to active projects - Document archived projects section - Update workspace configuration Archived apps can be re-activated by moving back to apps/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
80 lines
No EOL
2.6 KiB
HTML
80 lines
No EOL
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="%LANG_ISO_CODE%">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta httpEquiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
|
|
<!-- Umami Analytics -->
|
|
<script
|
|
async
|
|
defer
|
|
data-website-id="fb5fc77a-ed24-4369-b9f5-7d8a01bc9fa4"
|
|
src="https://umami.manacore.ai/script.js"
|
|
></script>
|
|
|
|
<style>
|
|
/**
|
|
* Building on the RNWeb reset:
|
|
* https://github.com/necolas/react-native-web/blob/master/packages/react-native-web/src/exports/StyleSheet/initialRules.js
|
|
*/
|
|
html,
|
|
body,
|
|
#root {
|
|
width: 100%;
|
|
/* To smooth any scrolling behavior */
|
|
-webkit-overflow-scrolling: touch;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
/* Allows content to fill the viewport and go beyond the bottom */
|
|
min-height: 100%;
|
|
}
|
|
#root {
|
|
flex-shrink: 0;
|
|
flex-basis: auto;
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
|
|
html {
|
|
/* Prevent text size change on orientation change https://gist.github.com/tfausak/2222823#file-ios-8-web-app-html-L138 */
|
|
-webkit-text-size-adjust: 100%;
|
|
height: calc(100% + env(safe-area-inset-top));
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
/* Allows you to scroll below the viewport; default value is visible */
|
|
overflow-y: auto;
|
|
overscroll-behavior-y: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-ms-overflow-style: scrollbar;
|
|
}
|
|
/* Enable for apps that support dark-theme */
|
|
/*@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: black;
|
|
}
|
|
}*/
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>
|
|
<form action="" style="background-color: #fff; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999">
|
|
<div style="font-size: 18px; font-family: Helvetica, sans-serif; line-height: 24px; margin: 10%; width: 80%">
|
|
<p>Oh no! It looks like JavaScript is not enabled in your browser.</p>
|
|
<p style="margin: 20px 0">
|
|
<button type="submit" style="background-color: #4630eb; border-radius: 100px; border: none; box-shadow: none; color: #fff; cursor: pointer; font-weight: bold; line-height: 20px; padding: 6px 16px">
|
|
Reload
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</noscript>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html> |