26 lines
819 B
TypeScript
Executable File
26 lines
819 B
TypeScript
Executable File
import React from "react";
|
|
import BaseLayout from "components/BaseLayout";
|
|
import { SearchSection } from "components/SearchSection";
|
|
import { ColumnLayout } from "components/layouts/ThreeColumn/ColumnLayout";
|
|
import { SearchResultSection } from "components/SearchResultsSection";
|
|
import Fiter from "components/Filters/Filter";
|
|
|
|
export const SearchResultsPage = () => {
|
|
return (
|
|
<BaseLayout>
|
|
<SearchSection />
|
|
<ColumnLayout>
|
|
<ColumnLayout.Left>
|
|
<div className="h-98 w-[300px] border rounded my-5"><Fiter /></div>
|
|
</ColumnLayout.Left>
|
|
<ColumnLayout.Main>
|
|
<SearchResultSection />
|
|
</ColumnLayout.Main>
|
|
<ColumnLayout.Right>
|
|
<div className="w-[300px]"></div>
|
|
</ColumnLayout.Right>
|
|
</ColumnLayout>
|
|
</BaseLayout>
|
|
);
|
|
};
|