Remove outer layer for projects page

This commit is contained in:
akhisud3195 2025-04-10 16:25:20 +05:30
parent d87faf4ec6
commit 72f8c6815a
4 changed files with 193 additions and 214 deletions

View file

@ -10,7 +10,7 @@ interface SearchProjectsProps {
projects: z.infer<typeof Project>[];
isLoading: boolean;
heading: string;
subheading: string;
subheading?: string;
className?: string;
onClose?: () => void;
}