2025-11-05 16:29:09 -08:00
|
|
|
import React from "react";
|
2025-11-23 13:31:13 -08:00
|
|
|
import { Button } from "@katanemo/ui";
|
2025-11-05 16:29:09 -08:00
|
|
|
|
|
|
|
|
interface UnlockPotentialSectionProps {
|
|
|
|
|
variant?: "transparent" | "black";
|
|
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-21 11:18:35 -08:00
|
|
|
export function UnlockPotentialSection({
|
|
|
|
|
variant = "transparent",
|
|
|
|
|
className = "",
|
2025-11-05 16:29:09 -08:00
|
|
|
}: UnlockPotentialSectionProps) {
|
|
|
|
|
const backgroundClass = variant === "black" ? "bg-[#1a1a1a]" : "";
|
|
|
|
|
const textColor = variant === "black" ? "text-white" : "text-black";
|
|
|
|
|
|
|
|
|
|
return (
|
2025-11-21 11:18:35 -08:00
|
|
|
<section
|
2025-11-25 12:16:26 -08:00
|
|
|
className={`relative py-24 px-6 lg:px-[102px]`}
|
|
|
|
|
style={{ background: "linear-gradient(to top right, #ffffff, #dcdfff)" }}
|
2025-11-21 11:18:35 -08:00
|
|
|
>
|
2025-11-05 16:29:09 -08:00
|
|
|
<div className="max-w-[81rem] mx-auto">
|
|
|
|
|
<div className="max-w-4xl">
|
2025-11-21 11:18:35 -08:00
|
|
|
<h2
|
|
|
|
|
className={`font-sans font-normal text-[1.8rem] lg:text-4xl tracking-[-2.55px]! ${textColor} leading-[1.4] mb-8`}
|
|
|
|
|
>
|
|
|
|
|
Focus on prompting, not plumbing.
|
|
|
|
|
<br />
|
|
|
|
|
Build with{" "}
|
|
|
|
|
<strong className="font-medium text-primary">plano</strong>, get
|
|
|
|
|
started in less than a minute.
|
2025-11-05 16:29:09 -08:00
|
|
|
</h2>
|
2025-11-21 11:18:35 -08:00
|
|
|
|
2025-11-05 16:29:09 -08:00
|
|
|
<div className="flex flex-col sm:flex-row gap-5">
|
2025-11-21 11:18:35 -08:00
|
|
|
<Button>Deploy today</Button>
|
|
|
|
|
<Button variant="secondaryDark">Documentation</Button>
|
2025-11-05 16:29:09 -08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
}
|