CTA 64
edge_to_edge1 ColumnImage/Video BottomText Align LeftImage

Code
relume-cta64.tsx
import { Button, type ButtonProps } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { useState } from "react";
type ImageProps = {
src: string;
alt?: string;
};
type Props = {
heading: string;
description: string;
image: ImageProps;
inputPlaceholder: string;
button: ButtonProps;
termsAndConditions: string;
};
export type Cta64Props = React.ComponentPropsWithoutRef<"section"> & Partial<Props>;
export const Cta64 = (props: Cta64Props) => {
const { heading, description, image, inputPlaceholder, button, termsAndConditions } = {
...Cta64Defaults,
...props,
};
const [emailInput, setEmailInput] = useState<string>("");
const handleSubmit = (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();
console.log({
emailInput,
});
};
return (
<section>
<div className="px-[5%] py-16 md:py-24 lg:py-28">
<div className="w-full max-w-lg">
<h1 className="mb-5 text-h2 font-bold md:mb-6">{heading}</h1>
<p className="text-medium">{description}</p>
<div className="mt-6 w-full max-w-sm md:mt-8">
<form
className="mb-4 grid max-w-sm grid-cols-1 gap-y-3 sm:grid-cols-[1fr_max-content] sm:gap-4"
onSubmit={handleSubmit}
>
<Input
id="email"
type="email"
placeholder={inputPlaceholder}
value={emailInput}
onChange={(e) => setEmailInput(e.target.value)}
/>
<Button {...button}>{button.title}</Button>
</form>
<div dangerouslySetInnerHTML={{ __html: termsAndConditions }} />
</div>
</div>
</div>
<div>
<img src={image.src} className="size-full rounded-image object-cover" alt={image.alt} />
</div>
</section>
);
};
export const Cta64Defaults: Props = {
heading: "Long heading is what you see here in this call to action section",
description:
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique.",
image: {
src: "https://d22po4pjz3o32e.cloudfront.net/placeholder-image-landscape.svg",
alt: "Relume placeholder image",
},
inputPlaceholder: "Enter your email",
button: { title: "Sign up" },
termsAndConditions: `
<p class='text-tiny'>
By clicking Sign Up you're confirming that you agree with our
<a href='#' class='underline'>Terms and Conditions</a>.
</p>
`,
};npm i @radix-ui/react-checkbox @radix-ui/react-dialog @radix-ui/react-label @radix-ui/react-radio-group @radix-ui/react-select @radix-ui/react-slot class-variance-authority@0.7.1 clsx@^2.1.1 motion@^12.15.0 relume-icons@1.3.0 tailwind-merge@^2.2.2


