Mingsong07 commited on
Commit
42112b9
·
verified ·
1 Parent(s): 2f6620c

什么是vibe coding

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +139 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Vibecoder Flowstate
3
- emoji: 📈
4
- colorFrom: red
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: VibeCoder Flowstate
3
+ colorFrom: yellow
4
+ colorTo: gray
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,140 @@
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>VibeCoder | Flowstate</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
11
+ <style>
12
+ .code-bg {
13
+ background-color: #1a1a2e;
14
+ color: #e6e6e6;
15
+ font-family: 'Courier New', monospace;
16
+ }
17
+ .glow-text {
18
+ text-shadow: 0 0 8px rgba(100, 255, 218, 0.8);
19
+ }
20
+ .typewriter {
21
+ border-right: 3px solid #64ffda;
22
+ white-space: nowrap;
23
+ overflow: hidden;
24
+ animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
25
+ }
26
+ @keyframes typing {
27
+ from { width: 0 }
28
+ to { width: 100% }
29
+ }
30
+ @keyframes blink-caret {
31
+ from, to { border-color: transparent }
32
+ 50% { border-color: #64ffda }
33
+ }
34
+ </style>
35
+ </head>
36
+ <body class="code-bg min-h-screen" id="vanta-bg">
37
+ <div class="container mx-auto px-4 py-16">
38
+ <header class="flex flex-col items-center mb-12">
39
+ <div class="flex items-center space-x-4 mb-6">
40
+ <i data-feather="code" class="text-emerald-400 w-12 h-12"></i>
41
+ <h1 class="text-5xl font-bold text-emerald-400 glow-text">VibeCoder</h1>
42
+ </div>
43
+ <h2 class="text-xl text-gray-300 mb-2">The ultimate flowstate experience</h2>
44
+ <div class="w-full max-w-3xl h-1 bg-gradient-to-r from-emerald-400 to-purple-500 rounded-full"></div>
45
+ </header>
46
+
47
+ <main class="grid md:grid-cols-2 gap-10">
48
+ <section class="bg-gray-900 bg-opacity-70 rounded-xl p-8 backdrop-blur-sm border border-gray-700">
49
+ <h3 class="text-2xl text-emerald-400 mb-4 flex items-center">
50
+ <i data-feather="zap" class="mr-2"></i> What is Vibe Coding?
51
+ </h3>
52
+ <p class="text-gray-300 mb-6 leading-relaxed">
53
+ Vibe coding is when you enter that magical flow state where code flows effortlessly from your fingertips. It's that sweet spot where time disappears and you become one with your editor.
54
+ </p>
55
+ <div class="typewriter text-gray-300 text-lg mb-6">while(inTheZone) { createMagic(); }</div>
56
+ <div class="flex flex-wrap gap-3">
57
+ <span class="px-3 py-1 bg-emerald-900 bg-opacity-50 rounded-full text-emerald-300">#FlowState</span>
58
+ <span class="px-3 py-1 bg-purple-900 bg-opacity-50 rounded-full text-purple-300">#DeveloperZen</span>
59
+ <span class="px-3 py-1 bg-blue-900 bg-opacity-50 rounded-full text-blue-300">#CodeHappiness</span>
60
+ </div>
61
+ </section>
62
+
63
+ <section class="bg-gray-900 bg-opacity-70 rounded-xl p-8 backdrop-blur-sm border border-gray-700">
64
+ <h3 class="text-2xl text-purple-400 mb-4 flex items-center">
65
+ <i data-feather="activity" class="mr-2"></i> Enter the Vibe
66
+ </h3>
67
+ <ul class="space-y-4">
68
+ <li class="flex items-start">
69
+ <i data-feather="check-circle" class="text-emerald-400 mr-3 mt-1"></i>
70
+ <span class="text-gray-300">Perfect playlist matching your coding tempo</span>
71
+ </li>
72
+ <li class="flex items-start">
73
+ <i data-feather="check-circle" class="text-emerald-400 mr-3 mt-1"></i>
74
+ <span class="text-gray-300">Ambient visualizations synced to your typing</span>
75
+ </li>
76
+ <li class="flex items-start">
77
+ <i data-feather="check-circle" class="text-emerald-400 mr-3 mt-1"></i>
78
+ <span class="text-gray-300">Distraction-free environment with focus timers</span>
79
+ </li>
80
+ <li class="flex items-start">
81
+ <i data-feather="check-circle" class="text-emerald-400 mr-3 mt-1"></i>
82
+ <span class="text-gray-300">Community of fellow vibe coders</span>
83
+ </li>
84
+ </ul>
85
+ <button class="mt-6 px-6 py-3 bg-gradient-to-r from-emerald-500 to-purple-600 rounded-lg text-white font-medium hover:opacity-90 transition flex items-center">
86
+ <i data-feather="play" class="mr-2"></i> Start Coding Session
87
+ </button>
88
+ </section>
89
+ </main>
90
+
91
+ <div class="mt-16 text-center">
92
+ <p class="text-gray-400 mb-4">Join thousands of developers in the ultimate coding flow</p>
93
+ <div class="flex justify-center space-x-4">
94
+ <a href="#" class="text-gray-400 hover:text-emerald-400 transition">
95
+ <i data-feather="github" class="w-6 h-6"></i>
96
+ </a>
97
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition">
98
+ <i data-feather="twitter" class="w-6 h-6"></i>
99
+ </a>
100
+ <a href="#" class="text-gray-400 hover:text-blue-400 transition">
101
+ <i data-feather="discord" class="w-6 h-6"></i>
102
+ </a>
103
+ </div>
104
+ </div>
105
+ </div>
106
+
107
+ <script>
108
+ VANTA.GLOBE({
109
+ el: "#vanta-bg",
110
+ mouseControls: true,
111
+ touchControls: true,
112
+ gyroControls: false,
113
+ minHeight: 200.00,
114
+ minWidth: 200.00,
115
+ scale: 1.00,
116
+ scaleMobile: 1.00,
117
+ color: 0x64ffda,
118
+ backgroundColor: 0x1a1a2e,
119
+ size: 0.8
120
+ })
121
+ </script>
122
+ <script>
123
+ feather.replace();
124
+ // Animate elements on scroll
125
+ document.addEventListener('DOMContentLoaded', () => {
126
+ const observer = new IntersectionObserver((entries) => {
127
+ entries.forEach(entry => {
128
+ if (entry.isIntersecting) {
129
+ entry.target.classList.add('animate-fadeIn');
130
+ }
131
+ });
132
+ }, { threshold: 0.1 });
133
+
134
+ document.querySelectorAll('section').forEach(section => {
135
+ observer.observe(section);
136
+ });
137
+ });
138
+ </script>
139
+ </body>
140
  </html>