S-Dreamer commited on
Commit
19e0d0d
·
verified ·
1 Parent(s): c10d257

i want a more 1:1 attention ration and landing page flow - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +177 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Prompt Crafting Lander
3
- emoji: 😻
4
- colorFrom: pink
5
- colorTo: red
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: prompt-crafting-lander
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: green
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,177 @@
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>PromptCrafting - AI Prompt Builder</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: '#6366f1',
15
+ secondary: '#8b5cf6',
16
+ dark: '#0f172a',
17
+ light: '#f8fafc'
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 {
26
+ font-family: 'Inter', sans-serif;
27
+ background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
28
+ color: #f8fafc;
29
+ }
30
+ .gradient-border {
31
+ background: linear-gradient(135deg, #6366f1, #8b5cf6) padding-box,
32
+ linear-gradient(135deg, #6366f1, #8b5cf6) border-box;
33
+ border: 2px solid transparent;
34
+ }
35
+ .card-hover {
36
+ transition: all 0.3s ease;
37
+ }
38
+ .card-hover:hover {
39
+ transform: translateY(-5px);
40
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
41
+ }
42
+ .feature-icon {
43
+ background: linear-gradient(135deg, #6366f1, #8b5cf6);
44
+ width: 60px;
45
+ height: 60px;
46
+ display: flex;
47
+ align-items: center;
48
+ justify-content: center;
49
+ border-radius: 12px;
50
+ }
51
+ .pricing-card {
52
+ transition: all 0.4s ease;
53
+ }
54
+ .pricing-card:hover {
55
+ transform: scale(1.03);
56
+ }
57
+ .testimonial-card {
58
+ background: rgba(30, 41, 59, 0.6);
59
+ backdrop-filter: blur(10px);
60
+ border: 1px solid rgba(99, 102, 241, 0.2);
61
+ }
62
+ .cta-section {
63
+ background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
64
+ radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
65
+ }
66
+ </style>
67
+ </head>
68
+ <body>
69
+ <!-- Navigation -->
70
+ <nav class="container mx-auto px-4 py-6 flex justify-center">
71
+ <div class="flex items-center space-x-2">
72
+ <div class="w-10 h-10 rounded-lg bg-gradient-to-br from-primary to-secondary flex items-center justify-center">
73
+ <i class="fas fa-brain text-white text-xl"></i>
74
+ </div>
75
+ <span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary to-secondary">PromptCrafting</span>
76
+ </div>
77
+ </nav>
78
+
79
+ <!-- Hero Section -->
80
+ <section class="container mx-auto px-4 py-8 md:py-12">
81
+ <div class="max-w-2xl mx-auto text-center">
82
+ <h1 class="text-4xl md:text-5xl font-bold mb-4 leading-tight">
83
+ Build Perfect AI Prompts
84
+ </h1>
85
+ <p class="text-lg text-slate-300 mb-8">
86
+ The complete AI development workflow in one focused platform
87
+ </p>
88
+ <div class="flex flex-col gap-4">
89
+ <button class="w-full max-w-xs mx-auto px-6 py-3 rounded-xl bg-gradient-to-r from-primary to-secondary hover:from-indigo-600 hover:to-violet-700 transition font-medium">
90
+ Start Free Trial
91
+ </button>
92
+ <p class="text-sm text-slate-500">No credit card required</p>
93
+ </div>
94
+ </div>
95
+ </section>
96
+
97
+ <!-- Single Feature Section -->
98
+ <section class="container mx-auto px-4 py-8">
99
+ <div class="max-w-2xl mx-auto text-center">
100
+ <h2 class="text-2xl font-bold mb-4">One Platform, All Your Needs</h2>
101
+ <p class="text-slate-400 mb-6">Built for developers who want focused, distraction-free AI development</p>
102
+ <div class="space-y-4">
103
+ <div class="bg-slate-800/50 p-4 rounded-lg border border-slate-700">
104
+ <i class="fas fa-mouse-pointer text-primary mb-2"></i>
105
+ <h4 class="font-semibold">Drag & Drop Builder</h4>
106
+ </div>
107
+ <div class="bg-slate-800/50 p-4 rounded-lg border border-slate-700">
108
+ <i class="fas fa-shield-alt text-primary mb-2"></i>
109
+ <h4 class="font-semibold">Security Scanning</h4>
110
+ </div>
111
+ <div class="bg-slate-800/50 p-4 rounded-lg border border-slate-700">
112
+ <i class="fas fa-sync-alt text-primary mb-2"></i>
113
+ <h4 class="font-semibold">CI/CD Generation</h4>
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </section>
118
+
119
+ <!-- Single Testimonial -->
120
+ <section class="container mx-auto px-4 py-8">
121
+ <div class="max-w-2xl mx-auto text-center">
122
+ <div class="testimonial-card p-6 rounded-2xl">
123
+ <p class="text-slate-300 italic mb-4">"This single platform replaced three tools I was using. The focused approach actually improved my productivity."</p>
124
+ <div class="flex items-center justify-center">
125
+ <div class="w-10 h-10 rounded-full bg-gradient-to-br from-primary to-secondary flex items-center justify-center text-sm font-bold text-white">JD</div>
126
+ <div class="ml-3 text-left">
127
+ <h5 class="font-semibold text-sm">John Davis</h5>
128
+ <p class="text-xs text-slate-400">Senior Developer</p>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </section>
134
+
135
+ <!-- Simple Pricing -->
136
+ <section class="container mx-auto px-4 py-8">
137
+ <div class="max-w-2xl mx-auto text-center">
138
+ <h2 class="text-2xl font-bold mb-4">Simple Pricing</h2>
139
+ <div class="bg-slate-800/50 p-6 rounded-2xl border border-slate-700">
140
+ <h3 class="text-xl font-bold mb-2">Pro Plan</h3>
141
+ <div class="mb-3">
142
+ <span class="text-3xl font-bold">$9.99</span>
143
+ <span class="text-slate-400 text-sm">/month</span>
144
+ </div>
145
+ <p class="text-slate-300 mb-4">Everything included. One price.</p>
146
+ <button class="w-full py-3 rounded-xl bg-gradient-to-r from-primary to-secondary hover:from-indigo-600 hover:to-violet-700 transition font-medium">
147
+ Start 14-Day Trial
148
+ </button>
149
+ </div>
150
+ </div>
151
+ </section>
152
+
153
+ <!-- Final CTA -->
154
+ <section class="container mx-auto px-4 py-8">
155
+ <div class="max-w-2xl mx-auto text-center">
156
+ <h2 class="text-xl font-bold mb-3">Ready to Start?</h2>
157
+ <p class="text-slate-400 mb-4">Join 2,000+ developers who switched to focused AI development</p>
158
+ <button class="px-6 py-3 rounded-xl bg-gradient-to-r from-primary to-secondary hover:from-indigo-600 hover:to-violet-700 transition font-medium">
159
+ Get Started Now
160
+ </button>
161
+ </div>
162
+ </section>
163
+
164
+ <!-- Minimal Footer -->
165
+ <footer class="container mx-auto px-4 py-6 border-t border-slate-800">
166
+ <div class="max-w-2xl mx-auto text-center">
167
+ <div class="flex items-center justify-center space-x-2 mb-2">
168
+ <div class="w-8 h-8 rounded-lg bg-gradient-to-br from-primary to-secondary flex items-center justify-center">
169
+ <i class="fas fa-brain text-white text-sm"></i>
170
+ </div>
171
+ <span class="text-lg font-bold">PromptCrafting</span>
172
+ </div>
173
+ <p class="text-sm text-slate-500">© 2023 All rights reserved</p>
174
+ </div>
175
+ </footer>
176
+ <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=S-Dreamer/prompt-crafting-lander" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
177
+ </html>