forked from emre/www_projectmycelium_com
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { CheckCircleIcon } from '@heroicons/react/20/solid'
 | 
						|
import { H2, P } from '@/components/Texts'
 | 
						|
 | 
						|
const benefits = [
 | 
						|
  'Decentralized Infrastructure',
 | 
						|
  'End-to-End Encryption',
 | 
						|
  'Sovereign Data Control',
 | 
						|
  'Scalable Kubernetes Clusters',
 | 
						|
  'Censorship-Resistant',
 | 
						|
  'Peer-to-Peer Networking',
 | 
						|
]
 | 
						|
 | 
						|
export function HomeCloud() {
 | 
						|
  return (
 | 
						|
    <div className="overflow-hidden bg-white py-24">
 | 
						|
      <div className="relative isolate">
 | 
						|
        <div className="mx-auto max-w-7xl sm:px-6 lg:px-8">
 | 
						|
          <div className="mx-auto flex max-w-2xl flex-col gap-16 bg-white px-6 py-16 shadow-lg ring-1 ring-gray-200/5 sm:rounded-3xl sm:p-8 lg:mx-0 lg:max-w-none lg:flex-row lg:items-center lg:py-20 xl:gap-x-20 xl:px-20">
 | 
						|
            <img
 | 
						|
              alt=""
 | 
						|
              src="/images/kubernetes.png"
 | 
						|
              className="h-96 w-full flex-none rounded-2xl object-cover lg:aspect-square lg:h-auto lg:max-w-sm"
 | 
						|
            />
 | 
						|
            <div className="w-full flex-auto">
 | 
						|
              <H2 className="">
 | 
						|
                Mycelium <span className="font-medium text-7xl italic">Cloud</span>
 | 
						|
              </H2>
 | 
						|
              <P className="mt-6 text-lg/8 text-pretty text-gray-600">
 | 
						|
                A comprehensive platform for deploying and managing Kubernetes clusters on the decentralized Mycelium Grid infrastructure
 | 
						|
              </P>
 | 
						|
              <ul
 | 
						|
                role="list"
 | 
						|
                className="mt-10 grid grid-cols-1 gap-x-8 gap-y-3 text-base/7 text-gray-950 sm:grid-cols-2"
 | 
						|
              >
 | 
						|
                {benefits.map((benefit) => (
 | 
						|
                  <li key={benefit} className="flex gap-x-3">
 | 
						|
                    <CheckCircleIcon aria-hidden="true" className="h-7 w-5 flex-none text-cyan-500" />
 | 
						|
                    {benefit}
 | 
						|
                  </li>
 | 
						|
                ))}
 | 
						|
              </ul>
 | 
						|
              <div className="mt-10 flex">
 | 
						|
                <a href="/cloud" className="text-sm/6 font-semibold text-cyan-600 hover:text-cyan-500">
 | 
						|
                  Learn more 
 | 
						|
                  <span aria-hidden="true"> →</span>
 | 
						|
                </a>
 | 
						|
              </div>
 | 
						|
            </div>
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
        <div
 | 
						|
          aria-hidden="true"
 | 
						|
          className="absolute inset-x-0 -top-16 -z-10 flex transform-gpu justify-center overflow-hidden blur-3xl"
 | 
						|
        >
 | 
						|
          <div
 | 
						|
            style={{
 | 
						|
              clipPath:
 | 
						|
                'polygon(73.6% 51.7%, 91.7% 11.8%, 100% 46.4%, 97.4% 82.2%, 92.5% 84.9%, 75.7% 64%, 55.3% 47.5%, 46.5% 49.4%, 45% 62.9%, 50.3% 87.2%, 21.3% 64.1%, 0.1% 100%, 5.4% 51.1%, 21.4% 63.9%, 58.9% 0.2%, 73.6% 51.7%)',
 | 
						|
            }}
 | 
						|
            className="aspect-1318/752 w-329.5 flex-none bg-linear-to-r from-[#9fe8fc] to-[#c6c4fa] opacity-50"
 | 
						|
          />
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 |