16 lines
406 B
TypeScript
16 lines
406 B
TypeScript
export default function SidebarWidget() {
|
|
return (
|
|
<div
|
|
className={`
|
|
mx-auto mb-10 w-full max-w-60 rounded-2xl bg-brand-50 px-4 py-5 text-center dark:bg-brand-900/20`}
|
|
>
|
|
<ul className="space-y-1 text-sm text-gray-700 dark:text-gray-300">
|
|
<li>Infinite.</li>
|
|
<li>Writing.</li>
|
|
<li>Refreshing.</li>
|
|
<li>Ranking.</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|