zombieofCrypto commited on
Commit
093b2ef
·
verified ·
1 Parent(s): d5810c4

- Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +195 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Testkungfu
3
- emoji: 🚀
4
- colorFrom: indigo
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: testkungfu
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: red
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,195 @@
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>I Know Kung-Fu, Do you?</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Roboto', sans-serif;
14
+ background-color: #f8f8f8;
15
+ }
16
+
17
+ .hero-title {
18
+ font-family: 'Oswald', sans-serif;
19
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
20
+ }
21
+
22
+ .kungfu-text {
23
+ background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
24
+ background-size: 400% 400%;
25
+ -webkit-background-clip: text;
26
+ background-clip: text;
27
+ color: transparent;
28
+ animation: gradient 15s ease infinite;
29
+ }
30
+
31
+ @keyframes gradient {
32
+ 0% { background-position: 0% 50%; }
33
+ 50% { background-position: 100% 50%; }
34
+ 100% { background-position: 0% 50%; }
35
+ }
36
+
37
+ .martial-arts-icon {
38
+ transition: all 0.3s ease;
39
+ }
40
+
41
+ .martial-arts-icon:hover {
42
+ transform: scale(1.2) rotate(10deg);
43
+ }
44
+
45
+ .footer-link:hover {
46
+ text-decoration: underline;
47
+ text-decoration-style: wavy;
48
+ }
49
+ </style>
50
+ </head>
51
+ <body class="min-h-screen flex flex-col">
52
+ <!-- Navigation -->
53
+ <nav class="bg-black text-white py-4 px-6 shadow-lg">
54
+ <div class="container mx-auto flex justify-between items-center">
55
+ <a href="#" class="text-2xl font-bold flex items-center">
56
+ <i class="fas fa-fist-raised mr-2 text-red-500"></i>
57
+ <span class="kungfu-text">I Know Kung-Fu</span>
58
+ </a>
59
+ <div class="hidden md:flex space-x-6">
60
+ <a href="#" class="hover:text-red-400 transition">Home</a>
61
+ <a href="#" class="hover:text-red-400 transition">Training</a>
62
+ <a href="#" class="hover:text-red-400 transition">Philosophy</a>
63
+ <a href="#" class="hover:text-red-400 transition">About</a>
64
+ <a href="#" class="hover:text-red-400 transition">Contact</a>
65
+ </div>
66
+ <button class="md:hidden text-white">
67
+ <i class="fas fa-bars text-2xl"></i>
68
+ </button>
69
+ </div>
70
+ </nav>
71
+
72
+ <!-- Hero Section -->
73
+ <header class="bg-gradient-to-r from-gray-900 to-gray-800 text-white py-20 px-6 flex-grow">
74
+ <div class="container mx-auto text-center">
75
+ <h1 class="hero-title text-4xl md:text-6xl font-bold mb-6">
76
+ <span class="kungfu-text">I Know Kung-Fu</span>, <span class="block md:inline-block mt-2">Do you?</span>
77
+ </h1>
78
+ <p class="text-xl md:text-2xl mb-10 max-w-2xl mx-auto">
79
+ You will know wisdom! You will know kung-fu
80
+ </p>
81
+ <div class="flex justify-center space-x-4 mb-16">
82
+ <div class="martial-arts-icon">
83
+ <i class="fas fa-user-ninja text-4xl text-red-500"></i>
84
+ </div>
85
+ <div class="martial-arts-icon">
86
+ <i class="fas fa-hand-rock text-4xl text-yellow-500"></i>
87
+ </div>
88
+ <div class="martial-arts-icon">
89
+ <i class="fas fa-running text-4xl text-blue-500"></i>
90
+ </div>
91
+ <div class="martial-arts-icon">
92
+ <i class="fas fa-yin-yang text-4xl text-green-500"></i>
93
+ </div>
94
+ </div>
95
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
96
+ <button class="bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105">
97
+ Begin Your Journey
98
+ </button>
99
+ <button class="bg-transparent hover:bg-white hover:text-black text-white font-bold py-3 px-8 border-2 border-white rounded-full transition transform hover:scale-105">
100
+ Learn More
101
+ </button>
102
+ </div>
103
+ </div>
104
+ </header>
105
+
106
+ <!-- Main Content -->
107
+ <main class="py-16 px-6">
108
+ <div class="container mx-auto">
109
+ <div class="flex flex-col md:flex-row items-center gap-12">
110
+ <div class="md:w-1/2">
111
+ <img src="https://lh4.googleusercontent.com/xl4f7_0cT4PcNvAiUs7EtBRxQcsIQBNERIVBBBtauCXXiRQfU9ZEIVZfKy5_y8Ntlo4uxP7Y261y_Gnlvp7tyNCta9D35tPlO1kR1WYpQFfEZGgXVT6oJQKmZ7Sa1lwtgIHe15XBJHw7BKdFnn-BZhFhcuhFRrMks-vEUKU7nULJ9ptwgzuu4Q=w1280"
112
+ alt="Kung Fu Master"
113
+ class="rounded-lg shadow-2xl w-full h-auto object-cover">
114
+ </div>
115
+ <div class="md:w-1/2">
116
+ <h2 class="text-3xl font-bold mb-6 text-gray-800">The Path to Mastery</h2>
117
+ <p class="text-gray-700 mb-6 text-lg leading-relaxed">
118
+ Kung Fu is more than just martial arts—it's a way of life that combines physical discipline with mental focus and spiritual growth. Our teachings come from ancient traditions, refined through generations of masters.
119
+ </p>
120
+ <div class="space-y-4">
121
+ <div class="flex items-start">
122
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
123
+ <p class="text-gray-700">Develop strength, flexibility, and endurance</p>
124
+ </div>
125
+ <div class="flex items-start">
126
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
127
+ <p class="text-gray-700">Learn self-defense techniques from authentic masters</p>
128
+ </div>
129
+ <div class="flex items-start">
130
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i>
131
+ <p class="text-gray-700">Cultivate mental discipline and inner peace</p>
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </main>
138
+
139
+ <!-- Quote Section -->
140
+ <section class="bg-gray-100 py-16 px-6">
141
+ <div class="container mx-auto text-center max-w-3xl">
142
+ <blockquote class="text-2xl md:text-3xl italic text-gray-800 mb-6">
143
+ "The ultimate aim of Kung Fu lies not in victory or defeat, but in the perfection of the character of its participants."
144
+ </blockquote>
145
+ <p class="text-gray-600 font-semibold">— Bruce Lee</p>
146
+ </div>
147
+ </section>
148
+
149
+ <!-- Footer -->
150
+ <footer class="bg-gray-900 text-white py-8 px-6">
151
+ <div class="container mx-auto">
152
+ <div class="flex flex-col md:flex-row justify-between items-center">
153
+ <div class="mb-6 md:mb-0">
154
+ <a href="#" class="text-xl font-bold flex items-center">
155
+ <i class="fas fa-fist-raised mr-2 text-red-500"></i>
156
+ <span class="kungfu-text">I Know Kung-Fu</span>
157
+ </a>
158
+ <p class="text-gray-400 mt-2 text-sm">© 2023 All Rights Reserved</p>
159
+ </div>
160
+ <div class="flex flex-col items-center md:items-end">
161
+ <div class="flex space-x-4 mb-4">
162
+ <a href="#" class="footer-link text-gray-400 hover:text-white">Home</a>
163
+ <a href="#" class="footer-link text-gray-400 hover:text-white">Training</a>
164
+ <a href="#" class="footer-link text-gray-400 hover:text-white">Philosophy</a>
165
+ <a href="#" class="footer-link text-gray-400 hover:text-white">About</a>
166
+ <a href="#" class="footer-link text-gray-400 hover:text-white">Contact</a>
167
+ </div>
168
+ <div class="text-gray-500 text-sm">
169
+ <span>Page updated</span>
170
+ <span class="mx-2">•</span>
171
+ <a href="#" class="footer-link hover:text-white">Report abuse</a>
172
+ </div>
173
+ </div>
174
+ </div>
175
+ </div>
176
+ </footer>
177
+
178
+ <script>
179
+ // Simple animation for martial arts icons
180
+ document.querySelectorAll('.martial-arts-icon').forEach(icon => {
181
+ icon.addEventListener('mouseover', () => {
182
+ icon.style.animation = 'none';
183
+ setTimeout(() => {
184
+ icon.style.animation = '';
185
+ }, 10);
186
+ });
187
+ });
188
+
189
+ // Mobile menu toggle (would need more implementation)
190
+ document.querySelector('button.md\\:hidden').addEventListener('click', () => {
191
+ alert('Mobile menu would open here in a full implementation');
192
+ });
193
+ </script>
194
+ <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=zombieofCrypto/testkungfu" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
195
+ </html>