feat: review

This commit is contained in:
moolcoov
2025-03-02 17:53:20 +03:00
parent 802c88adb0
commit 8accf88bb6
11 changed files with 166 additions and 10 deletions
@@ -0,0 +1,13 @@
import { Check } from "lucide-react";
export const NoReviews = () => {
return (
<div className="flex flex-col items-center gap-4">
<Check size={32} />
<div className="flex flex-col items-center gap-2">
<h2 className="text-2xl font-semibold">Посылок пока нет</h2>
<p className="text-muted-foreground text-lg">Можете расслабиться</p>
</div>
</div>
);
};