Cambera commited on
Commit
0b83e97
·
verified ·
1 Parent(s): ee46957

Upload components/Hero.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Hero.jsx +17 -0
components/Hero.jsx ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function Hero() {
2
+ return (
3
+ <section className="bg-secondary py-20">
4
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
5
+ <h1 className="text-4xl md:text-6xl font-bold text-primary mb-6">
6
+ Soluções em Tecnologia
7
+ </h1>
8
+ <p className="text-xl text-gray-600 max-w-3xl mx-auto mb-8">
9
+ Transformamos ideias em soluções digitais inovadoras para o seu negócio.
10
+ </p>
11
+ <button className="bg-primary text-white px-8 py-3 rounded-md hover:bg-opacity-90 transition">
12
+ Conheça nossos serviços
13
+ </button>
14
+ </div>
15
+ </section>
16
+ );
17
+ }