This commit is contained in:
tejaspanchall
2025-05-28 23:11:20 +05:30
commit 00797f0c96
52 changed files with 15166 additions and 0 deletions

5
src/app/search/layout.js Normal file
View File

@@ -0,0 +1,5 @@
import SharedLayout from '@/components/SharedLayout';
export default function SearchLayout({ children }) {
return <SharedLayout>{children}</SharedLayout>;
}