Initial commit: igny8 project

This commit is contained in:
igny8
2025-11-09 10:27:02 +00:00
commit 60b8188111
27265 changed files with 4360521 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
export default function SidebarWidget() {
return (
<div
className={`
mx-auto mb-10 w-full max-w-60 rounded-2xl bg-blue-50 px-4 py-5 text-center dark:bg-blue-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>
);
}