Home page completed

This commit is contained in:
libertyoms
2025-04-20 18:19:43 +02:00
parent 211cb3fc6f
commit 5eb60015cc
24 changed files with 1412 additions and 428 deletions

12
app/loading.tsx Normal file
View File

@ -0,0 +1,12 @@
"use client";
import { PacmanLoader } from "react-spinners";
const Loading = () => {
return (
<div className="flex items-center justify-center h-screen">
<PacmanLoader />
</div>
);
};
export default Loading;