Alim111 commited on
Commit
0656b38
·
verified ·
1 Parent(s): 84e8ed4

Redesign my website

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +161 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Mindspark Ai Companion
3
- emoji: 🔥
4
- colorFrom: red
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: MindSpark AI Companion 🌟
3
+ colorFrom: blue
4
+ colorTo: pink
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,162 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </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>MindSpark AI Companion</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
12
+ body {
13
+ font-family: 'Inter', sans-serif;
14
+ }
15
+ .gradient-bg {
16
+ background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
17
+ }
18
+ .glass-effect {
19
+ background: rgba(255, 255, 255, 0.1);
20
+ backdrop-filter: blur(10px);
21
+ border: 1px solid rgba(255, 255, 255, 0.2);
22
+ }
23
+ .chat-bubble-user {
24
+ background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
25
+ }
26
+ .sidebar-item:hover {
27
+ background: rgba(255, 255, 255, 0.15);
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="bg-gray-50 min-h-screen">
32
+ <!-- Header -->
33
+ <header class="bg-white shadow-sm border-b">
34
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
35
+ <div class="flex justify-between items-center py-4">
36
+ <div class="flex items-center space-x-2">
37
+ <div class="w-8 h-8 rounded-full bg-gradient-to-r from-green-400 to-blue-500"></div>
38
+ <h1 class="text-2xl font-bold text-gray-900">MindSpark</h1>
39
+ <nav class="hidden md:flex space-x-6">
40
+ <a href="#" class="text-gray-600 hover:text-gray-900 font-medium">Features</a>
41
+ <a href="#" class="text-gray-600 hover:text-gray-900 font-medium">Pricing</a>
42
+ <a href="#" class="text-gray-600 hover:text-gray-900 font-medium">About</a>
43
+ </nav>
44
+ <div class="flex items-center space-x-4">
45
+ <button class="px-4 py-2 text-gray-600 hover:text-gray-900 font-medium">Blog</a>
46
+ </div>
47
+ <div class="flex items-center space-x-3">
48
+ <button class="px-4 py-2 bg-gradient-to-r from-green-400 to-blue-500 text-white rounded-lg font-medium transition-all duration-300">Log in</button>
49
+ <button class="px-6 py-2 bg-gradient-to-r from-green-400 to-blue-500 text-white rounded-lg font-medium transition-all duration-300">Sign up free</button>
50
+ </div>
51
+ </div>
52
+ </header>
53
+
54
+ <!-- Main Content -->
55
+ <main class="flex-1 flex">
56
+ <!-- Sidebar -->
57
+ <aside class="w-64 bg-white border-r min-h-[calc(100vh-80px)]">
58
+ <div class="p-6">
59
+ <div class="flex items-center justify-between mb-6">
60
+ <h2 class="text-lg font-semibold text-gray-900">New Chat</h2>
61
+ </div>
62
+ <div class="px-6">
63
+ <div class="mb-4 p-4 rounded-xl glass-effect">
64
+ <div class="flex items-center">
65
+ <div class="w-2 h-2 bg-green-400 rounded-full"></div>
66
+ <div class="space-y-2">
67
+ <div class="flex items-center p-3 rounded-lg sidebar-item cursor-pointer transition-all duration-300">
68
+ <i data-feather="message-circle" class="w-5 h-5 text-gray-600"></i>
69
+ <span class="ml-3 text-gray-700 font-medium">Temporary Chat</span>
70
+ </div>
71
+ </div>
72
+ </aside>
73
+
74
+ <!-- Chat Area -->
75
+ <section class="flex-1 flex flex-col">
76
+ <div class="flex-1 p-6 overflow-y-auto">
77
+ <!-- Temporary Chat Notice -->
78
+ <div class="mb-6 p-4 rounded-xl bg-gradient-to-r from-green-400 to-blue-500 text-white">
79
+ <div class="flex items-center text-sm">
80
+ <i data-feather="info" class="w-4 h-4 text-gray-400"></i>
81
+ </div>
82
+ <div class="bg-white rounded-2xl shadow-lg border">
83
+ <div class="p-4 border-b">
84
+ <div class="flex items-center space-x-2">
85
+ <div class="w-2 h-2 bg-green-400 rounded-full"></div>
86
+ <p class="text-sm text-gray-600">This chat won't appear in history or be used to train our models. For safety purposes, we may keep a copy of this chat for up to 30 days.</p>
87
+ </div>
88
+
89
+ <!-- Chat Messages -->
90
+ <div class="space-y-4">
91
+ <div class="flex justify-end">
92
+ <div class="max-w-[80%] bg-gradient-to-r from-green-400 to-blue-500 text-white rounded-2xl p-4">Welcome! How can I assist you today?</div>
93
+ </div>
94
+
95
+ <!-- User Input Area -->
96
+ <div class="mt-6">
97
+ <div class="flex items-center space-x-3 mb-4">
98
+ <button class="p-2 rounded-full border hover:bg-gray-50 transition-all duration-300">
99
+ <i data-feather="paperclip" class="w-5 h-5 text-gray-600"></i>
100
+ </div>
101
+ <div class="flex items-center space-x-3">
102
+ <button class="p-2 rounded-full border hover:bg-gray-50 transition-all duration-300">
103
+ <i data-feather="search" class="w-5 h-5 text-gray-600"></i>
104
+ </div>
105
+ <div class="flex items-center space-x-3">
106
+ <button class="p-2 rounded-full border hover:bg-gray-50 transition-all duration-300">
107
+ <i data-feather="book-open" class="w-5 h-5 text-gray-600"></i>
108
+ </div>
109
+ <div class="flex items-center space-x-3">
110
+ <button class="p-2 rounded-full border hover:bg-gray-50 transition-all duration-300">
111
+ <i data-feather="mic" class="w-5 h-5 text-gray-600"></i>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- Input Field -->
116
+ <div class="mt-6">
117
+ <div class="flex items-center bg-white rounded-2xl border shadow-sm">
118
+ <input type="text" placeholder="Message ChatGPT..." class="w-full px-4 py-3 focus:outline-none focus:ring-2 focus:ring-green-400 rounded-2xl border p-3 text-gray-900 placeholder-gray-500">
119
+ </div>
120
+ <p class="text-xs text-gray-500 mt-2">By messaging MindSpark, you agree to our <a href="#" class="text-green-500 hover:text-green-600 transition-colors duration-300">Terms</a> and have read our <a href="#" class="text-green-500 hover:text-green-600 transition-colors duration-300">Privacy Policy</a>.</p>
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </section>
125
+ </main>
126
+
127
+ <!-- Footer -->
128
+ <footer class="bg-white border-t py-6">
129
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
130
+ <div class="flex flex-col md:flex-row justify-between items-center">
131
+ <div class="flex items-center space-x-4">
132
+ <a href="#" class="text-sm text-gray-600 hover:text-gray-900 transition-colors duration-300">
133
+ <p>© 2024 MindSpark AI. All rights reserved.</p>
134
+ </div>
135
+ </div>
136
+ </footer>
137
+
138
+ <script>
139
+ feather.replace();
140
+ tailwind.config = {
141
+ theme: {
142
+ extend: {
143
+ colors: {
144
+ primary: {
145
+ 50: '#f0fdf4',
146
+ 100: '#dcfce7',
147
+ 200: '#bbf7d0',
148
+ 300: '#86efac',
149
+ 400: '#4ade80',
150
+ 500: '#10B981',
151
+ 600: '#059669',
152
+ 700: '#047857',
153
+ 800: '#065f46',
154
+ 900: '#064e3b'
155
+ }
156
+ }
157
+ }
158
+ }
159
+ }
160
+ </script>
161
+ </body>
162
  </html>