This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-22 16:29:34 +05:00
commit ff10553786
123 changed files with 11006 additions and 0 deletions

10
app/page.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { Banner, Statistics } from "@/components/pages/home";
export default function Home() {
return (
<main className="bg-slate-950 mb-50">
<Banner />
<Statistics />
</main>
);
}