rezasabir123 commited on
Commit
6f43050
·
verified ·
1 Parent(s): 0ea6327

https://preview.themeforest.net/item/medimart-health-and-medical-react-next-js-template/full_screen_preview/50712942

Browse files
Files changed (3) hide show
  1. README.md +8 -5
  2. about.html +53 -0
  3. index.html +240 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Medisphere Healing Hub Hub
3
- emoji: 🚀
4
- colorFrom: indigo
5
- colorTo: pink
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: MediSphere - Healing Hub Hub 🏥
3
+ colorFrom: blue
4
+ colorTo: purple
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).
about.html ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>About Us - MediSphere</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ colors: {
16
+ primary: '#3B82F6',
17
+ secondary: '#10B981',
18
+ }
19
+ }
20
+ }
21
+ }
22
+ </script>
23
+ <style>
24
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
25
+ body { font-family: 'Inter', sans-serif; }
26
+ .gradient-bg { background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%); }
27
+ .hover-lift { transition: all 0.3s ease; }
28
+ .hover-lift:hover { transform: translateY(-5px); }
29
+ .nav-link { position: relative; }
30
+ .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: #3B82F6; transition: width 0.3s; }
31
+ .nav-link:hover::after { width: 100%; }
32
+ </style>
33
+ </head>
34
+ <body class="bg-gray-50 text-gray-800">
35
+ <!-- Navigation -->
36
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
37
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
38
+ <div class="flex justify-between h-16">
39
+ <div class="flex items-center">
40
+ <div class="flex-shrink-0 flex items-center">
41
+ <i data-feather="heart" class="text-primary h-8 w-8"></i>
42
+ <span class="ml-2 text-xl font-bold text-gray-900">MediSphere</span>
43
+ </div>
44
+ </div>
45
+ <div class="hidden md:flex items-center space-x-8">
46
+ <a href="index.html" class="nav-link text-gray-700 hover:text-primary font-medium">Home</a>
47
+ <a href="about.html" class="nav-link text-primary font-medium">About</a>
48
+ <a href="services.html" class="nav-link text-gray-700 hover:text-primary font-medium">Services</a>
49
+ <a href="doctors.html" class="nav-link text-gray-700 hover:text-primary font-medium">Doctors</a>
50
+ <a href="blog.html" class="nav-link text-gray-700 hover:text-primary font-medium">Blog</a>
51
+ <a href="
52
+ </body>
53
+ </html>
index.html CHANGED
@@ -1,19 +1,241 @@
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>MediSphere - Premium Healthcare Services</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
12
+ <script>
13
+ tailwind.config = {
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ primary: '#3B82F6',
18
+ secondary: '#10B981',
19
+ }
20
+ }
21
+ }
22
+ }
23
+ </script>
24
+ <style>
25
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
26
+ body { font-family: 'Inter', sans-serif; }
27
+ .gradient-bg { background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%); }
28
+ .hover-lift { transition: all 0.3s ease; }
29
+ .hover-lift:hover { transform: translateY(-5px); }
30
+ .service-card { backdrop-filter: blur(10px); background: rgba(255, 255, 255, 0.9); }
31
+ .nav-link { position: relative; }
32
+ .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: #3B82F6; transition: width 0.3s; }
33
+ .nav-link:hover::after { width: 100%; }
34
+ </style>
35
+ </head>
36
+ <body class="bg-gray-50 text-gray-800">
37
+ <!-- Navigation -->
38
+ <nav class="bg-white shadow-sm sticky top-0 z-50">
39
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
40
+ <div class="flex justify-between h-16">
41
+ <div class="flex items-center">
42
+ <div class="flex-shrink-0 flex items-center">
43
+ <i data-feather="heart" class="text-primary h-8 w-8"></i>
44
+ <span class="ml-2 text-xl font-bold text-gray-900">MediSphere</span>
45
+ </div>
46
+ </div>
47
+ <div class="hidden md:flex items-center space-x-8">
48
+ <a href="index.html" class="nav-link text-gray-700 hover:text-primary font-medium">Home</a>
49
+ <a href="about.html" class="nav-link text-gray-700 hover:text-primary font-medium">About</a>
50
+ <a href="services.html" class="nav-link text-gray-700 hover:text-primary font-medium">Services</a>
51
+ <a href="doctors.html" class="nav-link text-gray-700 hover:text-primary font-medium">Doctors</a>
52
+ <a href="blog.html" class="nav-link text-gray-700 hover:text-primary font-medium">Blog</a>
53
+ <a href="contact.html" class="nav-link text-gray-700 hover:text-primary font-medium">Contact</a>
54
+ </div>
55
+ <div class="flex items-center">
56
+ <button class="bg-primary text-white px-4 py-2 rounded-lg font-medium hover:bg-blue-600 transition">Book Appointment</button>
57
+ <button class="md:hidden ml-4">
58
+ <i data-feather="menu" class="h-6 w-6"></i>
59
+ </button>
60
+ </div>
61
+ </div>
62
+ </div>
63
+ </nav>
64
+
65
+ <!-- Hero Section -->
66
+ <section class="gradient-bg text-white">
67
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
68
+ <div class="grid md:grid-cols-2 gap-12 items-center">
69
+ <div>
70
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Your Health is Our Priority</h1>
71
+ <p class="text-xl mb-8 opacity-90">Experience world-class healthcare with our expert medical team and state-of-the-art facilities.</p>
72
+ <div class="flex space-x-4">
73
+ <button class="bg-white text-primary px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">Our Services</button>
74
+ <button class="border-2 border-white text-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-primary transition">Meet Our Doctors</button>
75
+ </div>
76
+ </div>
77
+ <div class="relative">
78
+ <img src="http://static.photos/medical/640x360/1" alt="Healthcare Professional" class="rounded-2xl shadow-2xl hover-lift">
79
+ <div class="absolute -bottom-4 -left-4 bg-white text-gray-800 p-4 rounded-xl shadow-lg">
80
+ <div class="flex items-center">
81
+ <div class="bg-secondary rounded-full p-2 mr-3">
82
+ <i data-feather="check-circle" class="h-6 w-6 text-white"></i>
83
+ </div>
84
+ <div>
85
+ <p class="font-semibold">24/7 Emergency</p>
86
+ <p class="text-sm text-gray-600">Immediate care when you need it</p>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </section>
94
+
95
+ <!-- Services Section -->
96
+ <section class="py-16 bg-white">
97
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
98
+ <div class="text-center mb-12">
99
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Our Medical Services</h2>
100
+ <p class="text-lg text-gray-600 max-w-2xl mx-auto">Comprehensive healthcare services tailored to meet your individual needs with compassion and expertise.</p>
101
+ </div>
102
+ <div class="grid md:grid-cols-3 gap-8">
103
+ <!-- Service Card 1 -->
104
+ <div class="service-card rounded-2xl p-6 shadow-lg hover-lift border border-gray-100">
105
+ <div class="bg-primary bg-opacity-10 rounded-xl p-3 w-12 h-12 flex items-center justify-center mb-4">
106
+ <i data-feather="activity" class="h-6 w-6 text-primary"></i>
107
+ </div>
108
+ <h3 class="text-xl font-semibold mb-2">Cardiology</h3>
109
+ <p class="text-gray-600 mb-4">Advanced heart care with cutting-edge technology and expert cardiologists.</p>
110
+ <a href="#" class="text-primary font-medium flex items-center">Learn More <i data-feather="arrow-right" class="h-4 w-4 ml-2"></i></a>
111
+ </div>
112
+ <!-- Service Card 2 -->
113
+ <div class="service-card rounded-2xl p-6 shadow-lg hover-lift border border-gray-100">
114
+ <div class="bg-secondary bg-opacity-10 rounded-xl p-3 w-12 h-12 flex items-center justify-center mb-4">
115
+ <i data-feather="eye" class="h-6 w-6 text-secondary"></i>
116
+ </div>
117
+ <h3 class="text-xl font-semibold mb-2">Ophthalmology</h3>
118
+ <p class="text-gray-600 mb-4">Comprehensive eye care services for vision health and surgical procedures.</p>
119
+ <a href="#" class="text-secondary font-medium flex items-center">Learn More <i data-feather="arrow-right" class="h-4 w-4 ml-2"></i></a>
120
+ </div>
121
+ <!-- Service Card 3 -->
122
+ <div class="service-card rounded-2xl p-6 shadow-lg hover-lift border border-gray-100">
123
+ <div class="bg-primary bg-opacity-10 rounded-xl p-3 w-12 h-12 flex items-center justify-center mb-4">
124
+ <i data-feather="heart" class="h-6 w-6 text-primary"></i>
125
+ </div>
126
+ <h3 class="text-xl font-semibold mb-2">Pediatrics</h3>
127
+ <p class="text-gray-600 mb-4">Specialized care for children from infancy through adolescence.</p>
128
+ <a href="#" class="text-primary font-medium flex items-center">Learn More <i data-feather="arrow-right" class="h-4 w-4 ml-2"></i></a>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </section>
133
+
134
+ <!-- Appointment CTA -->
135
+ <section class="py-16 bg-gray-100">
136
+ <div class="max-w-4xl mx-auto bg-white rounded-2xl shadow-lg p-8 md:p-12">
137
+ <div class="text-center mb-8">
138
+ <h2 class="text-3xl font-bold text-gray-900 mb-2">Book Your Appointment</h2>
139
+ <p class="text-gray-600">Schedule your visit with our specialists today</p>
140
+ </div>
141
+ <form class="grid md:grid-cols-2 gap-6">
142
+ <div>
143
+ <label class="block text-sm font-medium text-gray-700 mb-2">Full Name</label>
144
+ <input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
145
+ </div>
146
+ <div>
147
+ <label class="block text-sm font-medium text-gray-700 mb-2">Email Address</label>
148
+ <input type="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
149
+ </div>
150
+ <div>
151
+ <label class="block text-sm font-medium text-gray-700 mb-2">Phone Number</label>
152
+ <input type="tel" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
153
+ </div>
154
+ <div>
155
+ <label class="block text-sm font-medium text-gray-700 mb-2">Department</label>
156
+ <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent">
157
+ <option>Cardiology</option>
158
+ <option>Ophthalmology</option>
159
+ <option>Pediatrics</option>
160
+ <option>Dermatology</option>
161
+ </select>
162
+ </div>
163
+ <div class="md:col-span-2">
164
+ <label class="block text-sm font-medium text-gray-700 mb-2">Message</label>
165
+ <textarea rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary focus:border-transparent"></textarea>
166
+ </div>
167
+ <div class="md:col-span-2">
168
+ <button type="submit" class="w-full bg-primary text-white py-3 rounded-lg font-semibold hover:bg-blue-600 transition">Book Appointment</button>
169
+ </div>
170
+ </form>
171
+ </div>
172
+ </section>
173
+
174
+ <!-- Footer -->
175
+ <footer class="bg-gray-900 text-white pt-12 pb-8">
176
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
177
+ <div class="grid md:grid-cols-4 gap-8 mb-8">
178
+ <div>
179
+ <div class="flex items-center mb-4">
180
+ <i data-feather="heart" class="text-primary h-6 w-6"></i>
181
+ <span class="ml-2 text-xl font-bold">MediSphere</span>
182
+ </div>
183
+ <p class="text-gray-400">Providing exceptional healthcare services with compassion and innovation.</p>
184
+ </div>
185
+ <div>
186
+ <h4 class="font-semibold mb-4">Quick Links</h4>
187
+ <ul class="space-y-2 text-gray-400">
188
+ <li><a href="index.html" class="hover:text-white transition">Home</a></li>
189
+ <li><a href="about.html" class="hover:text-white transition">About Us</a></li>
190
+ <li><a href="services.html" class="hover:text-white transition">Services</a></li>
191
+ <li><a href="doctors.html" class="hover:text-white transition">Doctors</a></li>
192
+ </ul>
193
+ </div>
194
+ <div>
195
+ <h4 class="font-semibold mb-4">Services</h4>
196
+ <ul class="space-y-2 text-gray-400">
197
+ <li><a href="#" class="hover:text-white transition">Cardiology</a></li>
198
+ <li><a href="#" class="hover:text-white transition">Ophthalmology</a></li>
199
+ <li><a href="#" class="hover:text-white transition">Pediatrics</a></li>
200
+ <li><a href="#" class="hover:text-white transition">Emergency Care</a></li>
201
+ </ul>
202
+ </div>
203
+ <div>
204
+ <h4 class="font-semibold mb-4">Contact Info</h4>
205
+ <div class="space-y-3 text-gray-400">
206
+ <div class="flex items-center">
207
+ <i data-feather="map-pin" class="h-4 w-4 mr-2"></i>
208
+ <span>123 Medical Center Drive</span>
209
+ </div>
210
+ <div class="flex items-center">
211
+ <i data-feather="phone" class="h-4 w-4 mr-2"></i>
212
+ <span>(555) 123-4567</span>
213
+ </div>
214
+ <div class="flex items-center">
215
+ <i data-feather="mail" class="h-4 w-4 mr-2"></i>
216
+ <span>info@medisphere.com</span>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ <div class="border-t border-gray-800 pt-8 text-center text-gray-400">
222
+ <p>&copy; 2024 MediSphere. All rights reserved.</p>
223
+ </div>
224
+ </div>
225
+ </footer>
226
+
227
+ <script>
228
+ feather.replace();
229
+
230
+ // Simple hover animation for service cards
231
+ document.querySelectorAll('.service-card').forEach(card => {
232
+ card.addEventListener('mouseenter', () => {
233
+ card.style.transform = 'translateY(-10px)';
234
+ });
235
+ card.addEventListener('mouseleave', () => {
236
+ card.style.transform = 'translateY(0)';
237
+ });
238
+ });
239
+ </script>
240
+ </body>
241
  </html>