codeboosterstech commited on
Commit
25b05af
·
verified ·
1 Parent(s): 335a5e9

Update components/header.py

Browse files
Files changed (1) hide show
  1. components/header.py +7 -10
components/header.py CHANGED
@@ -1,29 +1,26 @@
1
  """
2
- Header component for the application
3
  """
4
 
5
  import gradio as gr
6
 
7
 
8
  def create_header():
9
- """Create the application header"""
10
 
11
  header_html = """
12
  <div class="header-container">
13
  <div class="header-content">
14
  <div class="logo-section">
15
- <span class="material-icons logo-icon">rocket_launch</span>
 
 
16
  <div class="logo-text">
17
- <h1>Hugging Face Space Creator</h1>
18
- <p class="tagline">Enterprise-grade Python to Gradio Application Converter</p>
19
  </div>
20
  </div>
21
- <div class="header-badge">
22
- <span class="material-icons">verified</span>
23
- <span>Enterprise Ready</span>
24
- </div>
25
  </div>
26
- <div class="header-divider"></div>
27
  </div>
28
  """
29
 
 
1
  """
2
+ Simplified header component
3
  """
4
 
5
  import gradio as gr
6
 
7
 
8
  def create_header():
9
+ """Create a simple, professional header"""
10
 
11
  header_html = """
12
  <div class="header-container">
13
  <div class="header-content">
14
  <div class="logo-section">
15
+ <svg class="logo-icon" width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
16
+ <path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/>
17
+ </svg>
18
  <div class="logo-text">
19
+ <h1>Space Creator</h1>
20
+ <p class="tagline">Convert Python code to deployable Gradio apps</p>
21
  </div>
22
  </div>
 
 
 
 
23
  </div>
 
24
  </div>
25
  """
26