SameerArz commited on
Commit
b4fd80e
·
verified ·
1 Parent(s): 9cf881c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +42 -24
index.html CHANGED
@@ -1,9 +1,10 @@
1
  <!DOCTYPE html>
2
- <html lang="ko">
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>eUM : Open Perflexity</title>
 
7
  <style>
8
  * {
9
  margin: 0;
@@ -12,50 +13,67 @@
12
  }
13
 
14
  body {
15
- font-family: Arial, sans-serif;
16
  display: flex;
17
  flex-direction: column;
18
- height: 100vh;
 
19
  }
20
 
21
  header {
22
- background-color: #f8f9fa;
23
- padding: 0.5rem;
24
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
25
- display: flex;
26
- align-items: center;
27
- gap: 1rem;
28
- font-size: 0.8rem;
29
  }
30
 
31
  .header-text {
32
- flex: 1;
33
- }
34
-
35
- h1 {
36
- font-size: 1rem;
37
- margin-bottom: 0.25rem;
38
- }
39
-
40
- p {
41
- color: #666;
42
- font-size: 0.8rem;
43
  }
44
 
45
  iframe {
46
  flex: 1;
47
  width: 100%;
48
  border: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  }
50
  </style>
51
  </head>
52
  <body>
53
  <header>
54
  <div class="header-text">
55
- <h1>eUM : Open Perflexity</h1>
56
-
57
  </div>
58
  </header>
59
- <iframe src="https://eum-lovat.vercel.app" allowfullscreen></iframe>
 
 
 
 
 
60
  </body>
61
  </html>
 
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>Mistral Mind: A Precision AI for Personalized Learning and Development</title>
7
+ <link rel="stylesheet" href="style.css">
8
  <style>
9
  * {
10
  margin: 0;
 
13
  }
14
 
15
  body {
 
16
  display: flex;
17
  flex-direction: column;
18
+ min-height: 100vh;
19
+ background-color: #f5f7fa; /* Light background for a clean, educational feel */
20
  }
21
 
22
  header {
23
+ padding: 1rem 2rem; /* Adjusted padding to match body */
 
24
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
25
+ background: linear-gradient(90deg, #4a90e2, #9013fe); /* Vibrant gradient for engagement */
26
+ color: white;
 
 
27
  }
28
 
29
  .header-text {
30
+ max-width: 620px;
31
+ margin: 0 auto;
 
 
 
 
 
 
 
 
 
32
  }
33
 
34
  iframe {
35
  flex: 1;
36
  width: 100%;
37
  border: none;
38
+ background-color: white;
39
+ border-radius: 16px;
40
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
41
+ }
42
+
43
+ .content-wrapper {
44
+ flex: 1;
45
+ padding: 0 2rem 2rem 2rem; /* Matches body padding */
46
+ display: flex;
47
+ justify-content: center;
48
+ align-items: stretch;
49
+ }
50
+
51
+ /* Responsive adjustments */
52
+ @media (max-width: 768px) {
53
+ header {
54
+ padding: 1rem;
55
+ }
56
+ .content-wrapper {
57
+ padding: 0 1rem 1rem 1rem;
58
+ }
59
+ .card {
60
+ max-width: 100%;
61
+ }
62
  }
63
  </style>
64
  </head>
65
  <body>
66
  <header>
67
  <div class="header-text">
68
+ <h1>Mistral Mind: A Precision AI</h1>
69
+ <p>For Personalized Learning and Development</p>
70
  </div>
71
  </header>
72
+ <div class="content-wrapper">
73
+ <div class="card">
74
+ <p>Welcome to Mistral Mind, your personalized learning companion powered by AI. Explore interactive lessons, track your progress, and unlock your potential!</p>
75
+ <iframe src="https://eum-lovat.vercel.app" allowfullscreen></iframe>
76
+ </div>
77
+ </div>
78
  </body>
79
  </html>