vlcsolutions commited on
Commit
bf56242
·
verified ·
1 Parent(s): be6cc09

apply attached image in the background in the banner section

Browse files
Files changed (2) hide show
  1. index.html +8 -5
  2. style.css +5 -0
index.html CHANGED
@@ -280,10 +280,14 @@ class="inline-flex items-center text-[#002060] hover:text-[#8DC63F] px-3 py-2 te
280
  </div>
281
  </div>
282
  </header>
283
-
284
  <!-- Banner Section -->
285
- <section class="pattern-navy text-white py-16 md:py-24">
286
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
 
 
 
 
 
287
  <div class="text-center">
288
  <h1 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Turn Ideas into Impactful, Scalable Apps—Effortlessly</h1>
289
  <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">Empower your team to create, collaborate & innovate with MS Power Platform.</p>
@@ -291,8 +295,7 @@ class="inline-flex items-center text-[#002060] hover:text-[#8DC63F] px-3 py-2 te
291
  </div>
292
  </div>
293
  </section>
294
-
295
- <!-- Section 1 -->
296
  <section class="py-16 md:py-24 bg-white">
297
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
298
  <div class="text-center mb-16">
 
280
  </div>
281
  </div>
282
  </header>
 
283
  <!-- Banner Section -->
284
+ <section class="pattern-navy text-white py-16 md:py-24 relative overflow-hidden">
285
+ <div class="absolute inset-0 z-0">
286
+ <img src="https://huggingface.co/spaces/vlcsolutions/power-impact-pro-builder/resolve/main/images/MS-Power-Apps.png"
287
+ alt="Microsoft Power Apps"
288
+ class="w-full h-full object-cover opacity-20">
289
+ </div>
290
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
291
  <div class="text-center">
292
  <h1 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Turn Ideas into Impactful, Scalable Apps—Effortlessly</h1>
293
  <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="100">Empower your team to create, collaborate & innovate with MS Power Platform.</p>
 
295
  </div>
296
  </div>
297
  </section>
298
+ <!-- Section 1 -->
 
299
  <section class="py-16 md:py-24 bg-white">
300
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
301
  <div class="text-center mb-16">
style.css CHANGED
@@ -1,8 +1,13 @@
 
1
  body {
2
  padding: 2rem;
3
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
 
 
 
 
6
  h1 {
7
  font-size: 16px;
8
  margin-top: 0;
 
1
+
2
  body {
3
  padding: 2rem;
4
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
5
  }
6
 
7
+ /* Banner image overlay effect */
8
+ .pattern-navy.relative {
9
+ background-blend-mode: overlay;
10
+ }
11
  h1 {
12
  font-size: 16px;
13
  margin-top: 0;