27 lines
601 B
TypeScript
27 lines
601 B
TypeScript
import Image from "@/components/Image"
|
|
import Title from "@/components/TempDesignSystem/Text/Title"
|
|
|
|
import styles from "./surprises.module.css"
|
|
|
|
import type { CardProps } from "@/types/components/blocks/surprises"
|
|
|
|
export default function Card({ title, children }: CardProps) {
|
|
return (
|
|
<div className={styles.content}>
|
|
<Image
|
|
src="/_static/img/loyalty-award.png"
|
|
width={113}
|
|
height={125}
|
|
alt="Gift"
|
|
/>
|
|
<header>
|
|
<Title textAlign="center" level="h4">
|
|
{title}
|
|
</Title>
|
|
</header>
|
|
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|