forked from emre/www_projectmycelium_com
- Replaced H1 with H3 and added Eyebrow component for "Project MYCELIUM" label - Removed promotional banner about booking a call - Improved text hierarchy and reduced vertical spacing (mt-8 to mt-4) - Added max-width constraint to description text for better readability - Removed unused H3Icon import
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { H1, H4, H3, H5, Eyebrow } from "@/components/Texts"
|
|
import { Button } from "@/components/Button"
|
|
import { H3Icon } from "@heroicons/react/20/solid"
|
|
|
|
export function HomeAurora({ onGetStartedClick }: { onGetStartedClick: () => void }) {
|
|
return (
|
|
<div className="px-4">
|
|
{/* Boxed container */}
|
|
<div
|
|
className="relative mx-auto max-w-7xl border border-t-0 border-gray-100 bg-white overflow-hidden bg-size-[65%] bg-right bg-no-repeat"
|
|
style={{ backgroundImage: "url('/images/hero11.webp')" }}
|
|
>
|
|
{/* Inner padding */}
|
|
<div className="px-6 py-16 lg:py-32 ">
|
|
<div className="max-w-2xl lg:pl-6">
|
|
<Eyebrow> Project MYCELIUM</Eyebrow>
|
|
<H3 className="mt-4">
|
|
Private, Distributed Infrastructure Built
|
|
for Digital Sovereignty
|
|
</H3>
|
|
|
|
<H5 className="mt-4 text-lg text-gray-600 max-w-xl">
|
|
Run your apps, data, and intelligence on infrastructure that belongs to you
|
|
</H5>
|
|
|
|
<div className="mt-8 flex items-center gap-x-6">
|
|
<Button
|
|
variant="solid"
|
|
color="cyan"
|
|
onClick={onGetStartedClick}
|
|
>
|
|
Start Hosting
|
|
</Button>
|
|
<Button to="#" variant="outline">
|
|
Deploy in Cloud →
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|