From 3b73ad49eacf4fd803e93175b0ced0297e236036 Mon Sep 17 00:00:00 2001 From: Ruchi Date: Wed, 24 Jan 2024 14:37:41 +0530 Subject: [PATCH] Ui- Chatpage --- src/app/page.js | 2 + src/app/ui/pages/chat/chat.css | 54 ++++++++++++++++++++++++ src/app/ui/pages/chat/chat.js | 75 ++++++++++++++++++++++++++++++++++ src/app/ui/pages/home/home.js | 1 + tailwind.config.js | 1 + 5 files changed, 133 insertions(+) create mode 100644 src/app/ui/pages/chat/chat.css create mode 100644 src/app/ui/pages/chat/chat.js diff --git a/src/app/page.js b/src/app/page.js index 45cabc21..f3f39035 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -5,6 +5,7 @@ import { HashRouter, Route, Routes, Navigate } from "react-router-dom" import { authenticateUser } from "@/utils/utils"; import Login from "./ui/pages/login/login"; import Layout from "./ui/Layout"; +import Chat from "./ui/pages/chat/chat"; import MyOrganization from "./ui/pages/organizations/organizations"; import ProjectList from "./ui/pages/projects/project"; import Projects from "./ui/pages/projects/projectDetails"; @@ -34,6 +35,7 @@ export default function Root() { } /> } /> + } /> } /> } /> + + +
+
+ router.push("/home") }> +
+ + +

100

+ + + +
+ +
+
+
+ +
+

Namaste

+

Tell me what’s on your mind or pick a suggestion. I have limitations and won't always get it right, but your

feedback will help me to improve.

+
+
+
+
+

What is Anudesh?

+

data leta hai multilingual(indic), will be used for model training for indic llms, 22, open source - model and data

+
+
+

How can you help?

+

GIF

+
+
+

Why Contribute?

+

Graph

+
+
+ +
+ + +
+
+
+ + + + + + ) +} diff --git a/src/app/ui/pages/home/home.js b/src/app/ui/pages/home/home.js index 9dc34e17..c1ec84ce 100644 --- a/src/app/ui/pages/home/home.js +++ b/src/app/ui/pages/home/home.js @@ -22,6 +22,7 @@ export default function Home() {
+
diff --git a/tailwind.config.js b/tailwind.config.js index 0c740f1b..7d9b4f00 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,6 +1,7 @@ /** @type {import('tailwindcss').Config} */ module.exports = { content: [ + './src/app/ui/pages/chat/chat.js', './src/app/ui/pages/home/home.js', './src/app/ui/pages/login/login.js', ],