mindbugg commited on
Commit
1c2d006
·
verified ·
1 Parent(s): 645a724

add image below, - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +104 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Hi
3
- emoji: 🏆
4
- colorFrom: pink
5
- colorTo: purple
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: hi
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,104 @@
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>Smaller Headline Example</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
9
+ <style>
10
+ /* Custom CSS if needed */
11
+ .custom-shadow {
12
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
13
+ }
14
+ </style>
15
+ </head>
16
+ <body class="bg-gray-50 min-h-screen">
17
+ <div class="container mx-auto px-4 py-8">
18
+ <!-- Header Section -->
19
+ <header class="mb-12">
20
+ <nav class="flex justify-between items-center py-4">
21
+ <div class="text-2xl font-bold text-indigo-600">Logo</div>
22
+ <div class="hidden md:flex space-x-8">
23
+ <a href="#" class="text-gray-600 hover:text-indigo-600 transition">Home</a>
24
+ <a href="#" class="text-gray-600 hover:text-indigo-600 transition">Features</a>
25
+ <a href="#" class="text-gray-600 hover:text-indigo-600 transition">About</a>
26
+ <a href="#" class="text-gray-600 hover:text-indigo-600 transition">Contact</a>
27
+ </div>
28
+ <button class="md:hidden text-gray-600">
29
+ <i class="fas fa-bars text-2xl"></i>
30
+ </button>
31
+ </nav>
32
+ </header>
33
+
34
+ <!-- Main Content -->
35
+ <main class="flex flex-col items-center text-center">
36
+ <!-- Smaller Headline Section -->
37
+ <section class="mb-12 w-full max-w-3xl">
38
+ <h1 class="text-2xl md:text-3xl font-bold mb-4 bg-gradient-to-r from-blue-500 to-green-500 bg-clip-text text-transparent">
39
+ Where Ideas Grow Like Unicorns on Coffee - Welcome to Creativity Wonderland!
40
+ </h1>
41
+ <p class="text-gray-600 mb-6">
42
+ Warning: Side effects may include excessive inspiration, sudden bursts of genius, and the irresistible urge to create something amazing.
43
+ </p>
44
+ <div class="flex justify-center space-x-4">
45
+ <button class="bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700 transition">
46
+ Primary Action
47
+ </button>
48
+ <button class="border border-gray-300 text-gray-700 px-6 py-2 rounded-lg hover:bg-gray-50 transition">
49
+ Secondary
50
+ </button>
51
+ </div>
52
+ </section>
53
+
54
+ <!-- Feature Cards -->
55
+ <section class="grid grid-cols-1 md:grid-cols-3 gap-8 w-full max-w-6xl">
56
+ <div class="bg-white p-6 rounded-xl custom-shadow">
57
+ <div class="text-indigo-500 mb-4">
58
+ <i class="fas fa-bolt text-3xl"></i>
59
+ </div>
60
+ <h3 class="text-lg font-semibold text-gray-800 mb-2">Fast Performance</h3>
61
+ <p class="text-gray-600">Optimized for speed and efficiency to deliver the best user experience.</p>
62
+ </div>
63
+ <div class="bg-white p-6 rounded-xl custom-shadow">
64
+ <div class="text-indigo-500 mb-4">
65
+ <i class="fas fa-shield-alt text-3xl"></i>
66
+ </div>
67
+ <h3 class="text-lg font-semibold text-gray-800 mb-2">Secure Data</h3>
68
+ <p class="text-gray-600">Enterprise-grade security to protect your valuable information.</p>
69
+ </div>
70
+ <div class="bg-white p-6 rounded-xl custom-shadow">
71
+ <div class="text-indigo-500 mb-4">
72
+ <i class="fas fa-cog text-3xl"></i>
73
+ </div>
74
+ <h3 class="text-lg font-semibold text-gray-800 mb-2">Easy Customization</h3>
75
+ <p class="text-gray-600">Flexible options to tailor the solution to your specific needs.</p>
76
+ </div>
77
+ </section>
78
+ </main>
79
+
80
+ <!-- Footer -->
81
+ <footer class="mt-20 py-8 border-t border-gray-200">
82
+ <div class="flex flex-col md:flex-row justify-between items-center">
83
+ <div class="mb-4 md:mb-0">
84
+ <span class="text-gray-600">© 2023 Your Company. All rights reserved.</span>
85
+ </div>
86
+ <div class="flex space-x-6">
87
+ <a href="#" class="text-gray-400 hover:text-indigo-600 transition">
88
+ <i class="fab fa-twitter text-xl"></i>
89
+ </a>
90
+ <a href="#" class="text-gray-400 hover:text-indigo-600 transition">
91
+ <i class="fab fa-facebook text-xl"></i>
92
+ </a>
93
+ <a href="#" class="text-gray-400 hover:text-indigo-600 transition">
94
+ <i class="fab fa-instagram text-xl"></i>
95
+ </a>
96
+ <a href="#" class="text-gray-400 hover:text-indigo-600 transition">
97
+ <i class="fab fa-linkedin text-xl"></i>
98
+ </a>
99
+ </div>
100
+ </div>
101
+ </footer>
102
+ </div>
103
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=mindbugg/hi" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
104
+ </html>