"use client";
import React from "react";
export default function Example() {
return (
<div className="flex flex-wrap justify-center gap-12">
<div className="relative border-[3px] border-blue-500 rounded-lg">
<img className="h-20 w-20 rounded"
src="https://cdn.21st.dev/assets/mirror/20/202f28d9108e13136b34315b1c8dac25678f9dc5cb2f004c713d930cf285e62c.jpg"
alt="userImage1" />
<div className="absolute -top-3 -right-2 flex items-center justify-center h-5 w-10 bg-blue-500 rounded-full">
<p className="text-white text-xs uppercase">New</p>
</div>
</div>
<div className="relative border-[3px] border-red-500 rounded-lg">
<img className="h-20 w-20 rounded"
src="https://cdn.21st.dev/assets/mirror/ce/ce1536afd37b7d4e6c9ffbee65b35e6897d4467ab07efc9b6466b6c1744654f9.jpg"
alt="userImage2" />
<div className="absolute -top-3 -right-2 flex items-center justify-center h-5 w-10 bg-red-500 rounded-full">
<p className="text-white text-xs uppercase">New</p>
</div>
</div>
<div className="relative border-[3px] border-yellow-500 rounded-lg">
<img className="h-20 w-20 rounded"
src="https://cdn.21st.dev/assets/mirror/a5/a5daca55ac260069e7a61ad9126a5913eec37ca03cb8cbc29cc37f8d13d2d2dd.jpg"
alt="userImage3" />
<div className="absolute -top-3 -right-2 flex items-center justify-center h-5 w-10 bg-yellow-500 rounded-full">
<p className="text-white text-xs uppercase">New</p>
</div>
</div>
</div>
);
};