feat: convert to nextjs

This commit is contained in:
2024-12-07 07:45:24 +01:00
parent b248ee80ee
commit 633b8ee207
52 changed files with 4121 additions and 982 deletions

5
components/Spinner.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { Loader2 } from 'lucide-react';
export const Spinner = () => {
return <Loader2 className='h-5 w-5 animate-spin' />;
};