ikram commited on
Commit
971445c
·
1 Parent(s): a30f0d6

add resources

Browse files
resources/aiRobot1.png ADDED
resources/aiRobot2.png ADDED
static/app.css CHANGED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ html ,body{
2
+ height: 100%;
3
+ width: 100%;
4
+ box-sizing: border-box;
5
+ background-color: white;
6
+ }
7
+
8
+ body{
9
+ gap: 20px;
10
+ }
11
+ header{
12
+ width: 100%;
13
+ height: 10%;
14
+ display: flex;
15
+ justify-content: flex-start;
16
+ gap : 20px ;
17
+ align-items: center;
18
+ }
19
+
20
+ header img {
21
+ height: 15vh;
22
+ width: 5vw;
23
+ object-fit:cover;
24
+ }
25
+
26
+ header span{
27
+ font-size: 30px;
28
+ }
29
+
30
+ em{
31
+ color:rgb(42, 42, 248);
32
+ }
33
+
34
+ .convo{
35
+ height: 75%;
36
+ width: 100%;
37
+
38
+ }
39
+ .qt{
40
+ height: 10%;
41
+ width: 100%;
42
+ display: flex;
43
+ justify-content: center;
44
+ align-items: center;
45
+ background-color: white;
46
+ gap: 2%;
47
+ }
48
+
49
+ .qt{
50
+ width: 100%;
51
+ height: 100%;
52
+ border: none;
53
+ background-color: rgb(103, 103, 246);
54
+ display: flex;
55
+
56
+ }
57
+
58
+ .qt i{
59
+ cursor: pointer;
60
+ }
61
+
62
+ .qtdoc{
63
+
64
+ }
templates/home.html ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AI Question Answering</title>
7
+ <link rel="stylesheet" href="/static/app.css">
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
9
+ </head>
10
+ <body>
11
+ <header class="intro">
12
+ <img src="/resources/aiRobot1.png" alt="">
13
+ <span>Hi , I’m <em>Chris</em> , your ai assistant . How can I help you today ?</span>
14
+ </header>
15
+ <div class="convo">
16
+
17
+ </div>
18
+ <div class="qtdoc">
19
+ <div class="qt">
20
+ <input type="text" placeholder=" Ask me anything about any document :D ">
21
+ <i class="fa-solid fa-file"></i>
22
+ <i class="fa-solid fa-share-from-square"></i>
23
+ </div>
24
+ </div>
25
+ </body>
26
+ </html>