Displays a shadow with mouse following.
| Prop | Type | Description |
|---|---|---|
| children | React.ReactNode | The content to be wrapped inside the div. |
function MouseFollowing() {
return (
<CardWithEffect>
<div className="h-[400px] flex items-center justify-center text-white">Mouse Here</div>
</CardWithEffect>
);
}