Card 4

src/components/card-4.tsx
import React from 'react'
import { clsx } from 'clsx'
interface Card4Props {
children: React.ReactNode
className?: string
rounded?: string
bgColor?: string
border?: string
shadow?: string
padding?: string
margin?: string
}
export function Card4({
children,
className,
rounded = 'rounded-xl',
bgColor = 'bg-body2',
border = 'border border-accent/10',
shadow = 'shadow-lg',
padding = 'p-10 md:p-10',
margin,
}: Card4Props) {
return (
<div
className={clsx(
rounded,
bgColor,
border,
shadow,
padding,
margin,
className
)}
>
{children}
</div>
)
}

Support

Talk to the developers of this project to learn more

We have been building professional websites for big clients for over 15 years. Gallop templates and blocks is our best foundation for SEO websites and web apps.

© 2026 Web Plant Media, LLC