* feat: add web app manifest and mobile PWA meta tags * feat: serve dynamic manifest.json with custom branding for pwa * feat: add ios status bar theming for pwa * fix: prevent overscroll behavior for mobile * fix: prevent ios safari auto-zoom on chat input * fix: remove theme-color meta tags conflicting with ios status bar * fix: add missing apple-mobile-web-app-capable meta tag for ios pwa * fix: move catch-all route after manifest endpoint to prevent interception * feat: add pwa detection helper and conditional styling for standalone mode * PWA refactor * undo changes to native CSS * class fix * proper response obj * fix patch for import * fix manifest errors --------- Co-authored-by: Christian De Santis <christian.constantino98@gmail.com>
44 lines
1.8 KiB
HTML
44 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AnythingLLM | Your personal LLM trained on anything</title>
|
|
|
|
<meta name="title" content="AnythingLLM | Your personal LLM trained on anything">
|
|
<meta name="description" content="AnythingLLM | Your personal LLM trained on anything">
|
|
|
|
<!-- Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://anythingllm.com">
|
|
<meta property="og:title" content="AnythingLLM | Your personal LLM trained on anything">
|
|
<meta property="og:description" content="AnythingLLM | Your personal LLM trained on anything">
|
|
<meta property="og:image"
|
|
content="https://raw.githubusercontent.com/Mintplex-Labs/anything-llm/master/images/promo.png">
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:url" content="https://anythingllm.com">
|
|
<meta property="twitter:title" content="AnythingLLM | Your personal LLM trained on anything">
|
|
<meta property="twitter:description" content="AnythingLLM | Your personal LLM trained on anything">
|
|
<meta property="twitter:image"
|
|
content="https://raw.githubusercontent.com/Mintplex-Labs/anything-llm/master/images/promo.png">
|
|
|
|
<link rel="icon" href="/favicon.png" />
|
|
<link rel="apple-touch-icon" href="/favicon.png" />
|
|
|
|
<!-- PWA -->
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<link rel="manifest" href="/manifest.json" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root" class="h-screen"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
|
|
</html>
|