dbeck22 commited on
Commit
f21f777
·
verified ·
1 Parent(s): 2395876

I need the main logo to be displayed big on the main screen/ home screen.. this contact form goes at the bottom

Browse files
Files changed (1) hide show
  1. index.html +36 -12
index.html CHANGED
@@ -19,6 +19,9 @@
19
  <!-- Hero Section -->
20
  <section class="min-h-screen flex items-center justify-center bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900 px-4">
21
  <div class="text-center max-w-4xl mx-auto">
 
 
 
22
  <h1 class="text-4xl md:text-6xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">
23
  Building Software, Systems, and Platforms That Actually Work.
24
  </h1>
@@ -35,8 +38,7 @@
35
  </div>
36
  </div>
37
  </section>
38
-
39
- <!-- Featured Projects -->
40
  <section class="py-20 px-4 bg-gray-800">
41
  <div class="max-w-6xl mx-auto">
42
  <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Flagship Projects</h2>
@@ -118,18 +120,40 @@
118
  </div>
119
  </div>
120
  </section>
121
-
122
- <!-- CTA Section -->
123
- <section class="py-20 px-4 bg-gradient-to-r from-blue-900 to-purple-900">
124
- <div class="max-w-4xl mx-auto text-center">
125
- <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Build Something Extraordinary?</h2>
126
- <p class="text-xl text-blue-200 mb-10">Available for the right project at the right price. Let's discuss your vision.</p>
127
- <a href="/hire.html" class="bg-white text-blue-900 hover:bg-blue-50 font-bold py-4 px-12 rounded-full text-lg transition duration-300 transform hover:scale-105">
128
- Start a Project
129
- </a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  </div>
131
  </section>
132
- </main>
133
 
134
  <custom-footer></custom-footer>
135
 
 
19
  <!-- Hero Section -->
20
  <section class="min-h-screen flex items-center justify-center bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900 px-4">
21
  <div class="text-center max-w-4xl mx-auto">
22
+ <img src="https://huggingface.co/spaces/dbeck22/beckpublishing-secure-code-crafters/resolve/main/images/beck-publishing-logo.png"
23
+ alt="Beck-Publishing Logo"
24
+ class="w-64 h-64 mx-auto mb-8 object-contain">
25
  <h1 class="text-4xl md:text-6xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">
26
  Building Software, Systems, and Platforms That Actually Work.
27
  </h1>
 
38
  </div>
39
  </div>
40
  </section>
41
+ <!-- Featured Projects -->
 
42
  <section class="py-20 px-4 bg-gray-800">
43
  <div class="max-w-6xl mx-auto">
44
  <h2 class="text-3xl md:text-4xl font-bold text-center mb-16">Flagship Projects</h2>
 
120
  </div>
121
  </div>
122
  </section>
123
+ <!-- Contact Form Section -->
124
+ <section class="py-20 px-4 bg-gray-800">
125
+ <div class="max-w-2xl mx-auto">
126
+ <h2 class="text-3xl font-bold mb-8 text-center">Get In Touch</h2>
127
+ <div class="bg-gray-700 rounded-2xl p-8">
128
+ <form class="space-y-6">
129
+ <div>
130
+ <label for="contact-name" class="block text-sm font-medium text-gray-300 mb-2">Your Name</label>
131
+ <input type="text" id="contact-name" name="name" required
132
+ class="w-full px-4 py-3 bg-gray-600 border border-gray-500 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:border-blue-500">
133
+ </div>
134
+
135
+ <div>
136
+ <label for="contact-email" class="block text-sm font-medium text-gray-300 mb-2">Email Address</label>
137
+ <input type="email" id="contact-email" name="email" required
138
+ class="w-full px-4 py-3 bg-gray-600 border border-gray-500 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:border-blue-500">
139
+ </div>
140
+
141
+ <div>
142
+ <label for="contact-message" class="block text-sm font-medium text-gray-300 mb-2">Message</label>
143
+ <textarea id="contact-message" name="message" rows="5" required
144
+ class="w-full px-4 py-3 bg-gray-600 border border-gray-500 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:border-blue-500"
145
+ placeholder="Tell me about your project..."></textarea>
146
+ </div>
147
+
148
+ <button type="submit"
149
+ class="w-full bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-6 rounded-lg transition duration-300">
150
+ Send Message
151
+ </button>
152
+ </form>
153
+ </div>
154
  </div>
155
  </section>
156
+ </main>
157
 
158
  <custom-footer></custom-footer>
159