mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* BIG UI UPDATE * fix: search bar, dialog template, new chat icon, convo icon and delete/rename button * moved some color config and a lot of files * small text fixes and tailwind config refactor * Update localization and UI styles * Update styles and add user-select:none to Tooltip component * Update mobile.css styles for navigation mask and background color * Update component imports and styles * Update DeleteButton imports and references * Update UI components * Update tooltip delay duration * Fix styling and update text in various components * fixed assistant style * minor style fixes * revert: removed CreationHeader & CreationPanel * style: match new styling for SidePanel * style: match bg-gray-800 to ChatGPT (#212121) * style: remove slate for gray where applicable to match new light theme --------- Co-authored-by: Danny Avila <messagedaniel@protonmail.com>
48 lines
984 B
HTML
48 lines
984 B
HTML
<!-- v0.6.10 -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="theme-color" content="#171717">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<title>LibreChat</title>
|
|
<link
|
|
rel="shortcut icon"
|
|
href="#"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="32x32"
|
|
href="/assets/favicon-32x32.png"
|
|
/>
|
|
<link
|
|
rel="icon"
|
|
type="image/png"
|
|
sizes="16x16"
|
|
href="/assets/favicon-16x16.png"
|
|
/>
|
|
<link
|
|
rel="apple-touch-icon"
|
|
href="/assets/apple-touch-icon-180x180.png"
|
|
/>
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1"
|
|
/>
|
|
<script
|
|
defer
|
|
type="module"
|
|
src="/client/src/main.jsx"
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
|
|
<script
|
|
type="module"
|
|
src="/client/src/main.jsx"
|
|
></script>
|
|
</body>
|
|
</html>
|