21 lines
505 B
TypeScript
21 lines
505 B
TypeScript
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 SearchTitle from '@/app/ui/search/search-title';
|
|
|
|
export default async function Page() {
|
|
|
|
return (
|
|
<>
|
|
<SearchTitle />
|
|
<div className="search-grid">
|
|
<SectionSearchFile />
|
|
<div className="search-sidebar">
|
|
<SupportedFormats />
|
|
<SearchStats />
|
|
</div>
|
|
</div>
|
|
</>
|
|
|
|
)
|
|
} |