search page + sorting starts

This commit is contained in:
2024-05-17 18:29:41 +05:00
parent 338865fb56
commit 891204f2b4
20 changed files with 801 additions and 110 deletions
+17
View File
@@ -0,0 +1,17 @@
import Footer from "../components/Footer";
import LayoutOptions from "../components/searchPage/LayoutOptions";
import SidebarFilters from "../components/searchPage/SidebarFilters";
const Search = () => {
return (
<div className="overflow-scroll h-screen w-screen pt-14">
<div className="flex">
<SidebarFilters />
<LayoutOptions />
</div>
<Footer />
</div>
);
};
export default Search;