"use client"; import Button from "./Button"; const ContentLockup = ({ title, subtitle, description, ctaText, ctaHref }) => { return (
{/* Text content container */}
{/* Title container */}

{title}

Decorative shapes
{/* Subtitle */}

{subtitle}

{/* Description */}

{description}

{/* CTA Button */}
); }; export default ContentLockup;