forked from React-Group/interstellar_ai
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
30e89d81db
18 changed files with 16 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
|||
import React, { useState } from 'react';
|
||||
import InputFrontend from './InputFrontend';
|
||||
import ConversationFrontend from './ConversationFrontend';
|
||||
import InputFrontend from '../components/InputFrontend';
|
||||
import ConversationFrontend from '../components/ConversationFrontend';
|
||||
import { Mistral } from '@mistralai/mistralai';
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
"use client"
|
||||
import React, { useEffect, useRef, useState } from "react";
|
||||
import ConversationFrontend from "./ConversationFrontend";
|
||||
import InputFrontend from "./InputFrontend";
|
||||
import ConversationFrontend from "../components/ConversationFrontend";
|
||||
import InputFrontend from "../components/InputFrontend";
|
||||
|
||||
const handleMicClick = () => {
|
||||
console.log('Mic clicked!');
|
|
@ -1,6 +1,6 @@
|
|||
// AI.tsx
|
||||
import React from 'react';
|
||||
import InputOutputBackend from './InputOutputHandler';
|
||||
import InputOutputBackend from '../backend/InputOutputHandler';
|
||||
|
||||
const AI: React.FC = () => {
|
||||
return (
|
|
@ -1,4 +1,4 @@
|
|||
import Header from "./Header";
|
||||
import Header from "./components/Header";
|
||||
|
||||
|
||||
export const metadata = {
|
||||
|
|
12
app/page.tsx
12
app/page.tsx
|
@ -1,11 +1,11 @@
|
|||
"use client";
|
||||
import React, { useState, useEffect, useRef } from 'react';
|
||||
import Header from './Header';
|
||||
import AI from './AI';
|
||||
import FAQ from './Faq'; // Ensure the import path is correct
|
||||
import Documentation from './Documentation'; // Ensure the import path is correct
|
||||
import History from './History';
|
||||
import Models from './Models';
|
||||
import Header from './components/Header';
|
||||
import AI from './components/AI';
|
||||
import FAQ from './components/Faq'; // Ensure the import path is correct
|
||||
import Documentation from './components/Documentation'; // Ensure the import path is correct
|
||||
import History from './components/History';
|
||||
import Models from './components/Models';
|
||||
import './styles/master.css';
|
||||
|
||||
const LandingPage: React.FC = () => {
|
||||
|
|
|
@ -9,11 +9,13 @@ const config: Config = {
|
|||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
background: "var(--background)",
|
||||
foreground: "var(--foreground)",
|
||||
'history-background': 'var(--history-background-color)',
|
||||
'text-color': 'var(--text-color)',
|
||||
'input-button-hover-color': 'var(--input-button-hover-color)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
|
Loading…
Reference in a new issue