forked from emre/www_projectmycelium_com
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
'use client'
 | 
						|
 | 
						|
import { H1, P } from '@/components/Texts'
 | 
						|
import { Button } from '@/components/Button'
 | 
						|
 | 
						|
export function HomeHero() {
 | 
						|
  return (
 | 
						|
        <div
 | 
						|
      className="relative isolate overflow-hidden bg-white h-screen -z-10  flex items-center justify-center"
 | 
						|
      style={{
 | 
						|
        backgroundImage: 'url(/images/cloud.png)',
 | 
						|
        backgroundSize: 'cover',
 | 
						|
        backgroundPosition: 'center',
 | 
						|
      }}
 | 
						|
    >
 | 
						|
      <div className="mx-auto max-w-7xl px-6 lg:px-8">
 | 
						|
        <div className="-mt-32 mx-auto max-w-2xl text-center">
 | 
						|
                    <H1 color="primary" className="text-5xl font-semibold tracking-tight text-pretty sm:text-7xl">
 | 
						|
            Decentralized Autonomous Agentic Cloud.
 | 
						|
          </H1>
 | 
						|
          <P color="secondary" className="mt-8 text-lg font-medium text-pretty sm:text-xl/8">
 | 
						|
            Mycelium's advancements in Agentic infrastructure supports private, secure and autonomous Agents that connect, learn and grow with you.
 | 
						|
          </P>
 | 
						|
          <div className="mt-10 flex items-center justify-center gap-x-6">
 | 
						|
            <Button variant="solid" color="cyan" href="#">
 | 
						|
              Get started
 | 
						|
            </Button>
 | 
						|
            <a href="#" className="text-sm/6 font-semibold text-gray-50">
 | 
						|
              Learn more <span aria-hidden="true">→</span>
 | 
						|
            </a>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 |