plano/apps/www/src/components/UnlockPotentialSection.tsx

42 lines
1.3 KiB
TypeScript
Raw Normal View History

import React from "react";
2025-11-23 13:31:13 -08:00
import { Button } from "@katanemo/ui";
interface UnlockPotentialSectionProps {
variant?: "transparent" | "black";
className?: string;
}
2025-11-21 11:18:35 -08:00
export function UnlockPotentialSection({
variant = "transparent",
className = "",
}: 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
>
<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.
</h2>
2025-11-21 11:18:35 -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>
</div>
</div>
</div>
</section>
);
}