forked from React-Group/interstellar_ai
Added some fonts
This commit is contained in:
parent
81cff1d68b
commit
18be0513a1
333 changed files with 2609 additions and 11 deletions
|
@ -11,14 +11,15 @@ const Login: React.FC = () => {
|
|||
// Credentials state
|
||||
const [email, setEmail] = useState('');
|
||||
const [password, setPassword] = useState('');
|
||||
const [accountName, setAccountName] = useState('Pluto'); // Set the account name
|
||||
const [accountName, setAccountName] = useState(''); // Set the account name
|
||||
const [newAccountEmail, setNewAccountEmail] = useState('');
|
||||
const [newAccountPassword, setNewAccountPassword] = useState('');
|
||||
const [newAccountName, setNewAccountName] = useState('');
|
||||
|
||||
// Fixed credentials
|
||||
const fixedEmail = 'pluto@imareal.planet';
|
||||
const fixedPassword = 'fuckTheSun1234';
|
||||
const fixedAccount = 'Pluto';
|
||||
const fixedEmail = '';
|
||||
const fixedPassword = '';
|
||||
const fixedAccount = '';
|
||||
|
||||
// Function to toggle the login popup
|
||||
const toggleLoginPopup = () => setShowLoginPopup(!showLoginPopup);
|
||||
|
@ -124,6 +125,16 @@ const Login: React.FC = () => {
|
|||
/>
|
||||
</div>
|
||||
|
||||
{/* New Account Name Input */}
|
||||
<div>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Name"
|
||||
value={newAccountName}
|
||||
onChange={(e) => setAccountName(e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* New Account Password Input */}
|
||||
<div>
|
||||
<input
|
||||
|
|
|
@ -833,10 +833,19 @@ const Settings: React.FC<{ closeSettings: () => void; accountName: string }> = (
|
|||
}}
|
||||
>
|
||||
<option value="'Poppins', sans-serif">Poppins</option>
|
||||
<option value="'Arial', sans-serif">Arial</option>
|
||||
<option value="'Calibri', sans-serif">Calibri</option>
|
||||
<option value="'Helvetica', sans-serif">Helvetica</option>
|
||||
<option value="'Times New Roman', serif">Times New Roman</option>
|
||||
<option value="'Inconsolata', monospace">Inconsolata</option>
|
||||
<option value="'Merriweather', serif">Merriweather</option>
|
||||
<option value="'Noto Sans', sans-serif">Noto Sans</option>
|
||||
<option value="'Noto Serif', serif">Noto Serif</option>
|
||||
<option value="'Playfair Display', serif">Playfair Display</option>
|
||||
<option value="'Roboto', sans-serif">Roboto</option>
|
||||
<option value="'Ubuntu', sans-serif">Ubuntu</option>
|
||||
<option value="'Bangers', cursive">Bangers</option>
|
||||
<option value="'Caveat', cursive">Caveat</option>
|
||||
<option value="'Frederika the Great', cursive">Frederika the Great</option>
|
||||
<option value="'Rock Salt', cursive">Rock Salt</option>
|
||||
<option value="'Sofadi One', sans-serif">Sofadi One</option>
|
||||
<option value="'Zilla Slab Highlight', serif">Zilla Slab Highlight</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
{"backgroundColor":"#8B9635","textColor":"#474D22","inputBackgroundColor":"#ffffff","inputButtonColor":"#8B9635","inputButtonHoverColor":"#6b7c2b","userMessageBackgroundColor":"#8B9635","userMessageTextColor":"#000","aiMessageBackgroundColor":"#FCFCEB","aiMessageTextColor":"#000","buttonBackgroundColor":"#8B9635","buttonHoverBackgroundColor":"#6b7c2b","modelsBackgroundColor":"#ffffff","historyBackgroundColor":"#f9f9f9","leftPanelBackgroundColor":"#79832e","conversationBackgroundColor":"#79832e","popUpTextColor":"#000","inputBorderColor":"#8B9635","fontFamily":"'Poppins', 'sans-serif'","fontSize":"16px","preferredLanguage":"en","preferredCurrency":"usd","dateFormat":"mm/dd/yyyy","timeFormat":"12-hour","timeZone":"GMT","disableOnlineAI":false,"disableChatHistory":false,"disableAIMemory":false,"openSourceMode":false,"laPlateforme":"","openAI":"","anthropic":"","google":""}
|
|
@ -1 +0,0 @@
|
|||
{"backgroundColor":"#8B9635","textColor":"#474D22","inputBackgroundColor":"#ffffff","inputButtonColor":"#8B9635","inputButtonHoverColor":"#6b7c2b","userMessageBackgroundColor":"#8B9635","userMessageTextColor":"#000","aiMessageBackgroundColor":"#FCFCEB","aiMessageTextColor":"#000","buttonBackgroundColor":"#8B9635","buttonHoverBackgroundColor":"#6b7c2b","modelsBackgroundColor":"#ffffff","historyBackgroundColor":"#f9f9f9","leftPanelBackgroundColor":"#79832e","conversationBackgroundColor":"#79832e","popUpTextColor":"#000","inputBorderColor":"#8B9635","fontFamily":"'Poppins', 'sans-serif'","fontSize":"16px","preferredLanguage":"en","preferredCurrency":"usd","dateFormat":"mm/dd/yyyy","timeFormat":"12-hour","timeZone":"GMT","disableOnlineAI":false,"disableChatHistory":false,"disableAIMemory":false,"openSourceMode":false,"laPlateforme":"","openAI":"","anthropic":"","google":""}
|
|
@ -1 +0,0 @@
|
|||
{"backgroundColor":"#8B9635","textColor":"#474D22","inputBackgroundColor":"#ffffff","inputButtonColor":"#8B9635","inputButtonHoverColor":"#6b7c2b","userMessageBackgroundColor":"#8B9635","userMessageTextColor":"#000","aiMessageBackgroundColor":"#FCFCEB","aiMessageTextColor":"#000","buttonBackgroundColor":"#8B9635","buttonHoverBackgroundColor":"#6b7c2b","modelsBackgroundColor":"#ffffff","historyBackgroundColor":"#f9f9f9","leftPanelBackgroundColor":"#79832e","conversationBackgroundColor":"#79832e","popUpTextColor":"#000","inputBorderColor":"#8B9635","fontFamily":"'Poppins', 'sans-serif'","fontSize":"16px","preferredLanguage":"en","preferredCurrency":"usd","dateFormat":"mm/dd/yyyy","timeFormat":"12-hour","timeZone":"GMT","disableOnlineAI":false,"disableChatHistory":false,"disableAIMemory":false,"openSourceMode":false,"laPlateforme":"","openAI":"","anthropic":"","google":""}
|
Loading…
Add table
Add a link
Reference in a new issue