add search side panel layout

This commit is contained in:
smanylov
2026-02-04 14:10:38 +07:00
parent 584f0dda2f
commit 2c26a8cd85
4 changed files with 168 additions and 3 deletions
+4
View File
@@ -1,5 +1,7 @@
import SectionSearchFile from '@/app/ui/search/section-search-file';
import { SupportedFormats } from '@/app/ui/search/supported-formats';
import { SearchStats } from '@/app/ui/search/search-stats';
import { RecentSearches } from '@/app/ui/search/recent-searches';
export default function Page() {
return (
<>
@@ -19,6 +21,8 @@ export default function Page() {
/>
<div className="search-sidebar">
<SupportedFormats />
<SearchStats />
<RecentSearches />
</div>
</div>
</>