File size: 659 Bytes
64c5e26
 
2587dc2
64c5e26
2587dc2
 
64c5e26
ca314ba
 
 
64c5e26
ca314ba
 
64c5e26
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export const Hero = () => {
  return (
    <section className="container py-30 sm:py-36 space-y-8">
      <div className="text-center lg:text-start space-y-6">
        <main className="text-8xl lg:text-10xl font-bold">
          <h1 className="md:text-center">
            <span className="inline bg-gradient-to-r from-[#F596D3]  to-[#D247BF] text-transparent bg-clip-text">
              Doc
            </span>
            Verify
            <span className="inline bg-gradient-to-r from-[#61DAFB] via-[#1fc0f1] to-[#03a3d7] text-transparent bg-clip-text">
              RAG
            </span></h1>{" "}
        </main>
      </div>
    </section>
  );
};