Components
Minimal hero with headline, subtext, and two action buttons on a soft gradient background.
Loading preview...
import { Component } from "@/components/ui/hero-section-4"
export default function Demo() {
return (
<div className="w-full h-screen">
<Component
title="Developer-first infrastructure platform"
description="Open-source tools and services for modern development teams. Deploy, monitor, and scale your applications with our cloud-native infrastructure."
primaryButtonText="View on GitHub"
primaryButtonHref="https://21st.dev/pieetie"
secondaryButtonText="Read documentation"
secondaryButtonHref="https://21st.dev/pieetie"
/>
</div>
)
}