Files
no-copy-frontend/src/app/[locale]/pages/search/page.tsx
T

21 lines
505 B
TypeScript
Raw Normal View History

2026-01-28 16:30:17 +07:00
import SectionSearchFile from '@/app/ui/search/section-search-file';
2026-02-04 13:21:32 +07:00
import { SupportedFormats } from '@/app/ui/search/supported-formats';
2026-02-04 14:10:38 +07:00
import { SearchStats } from '@/app/ui/search/search-stats';
2026-03-24 18:14:08 +07:00
import SearchTitle from '@/app/ui/search/search-title';
2026-02-12 18:02:25 +07:00
export default async function Page() {
2026-01-26 18:42:12 +07:00
return (
<>
2026-03-24 18:14:08 +07:00
<SearchTitle />
2026-01-26 18:42:12 +07:00
<div className="search-grid">
2026-03-13 17:29:52 +07:00
<SectionSearchFile />
2026-01-26 18:42:12 +07:00
<div className="search-sidebar">
2026-03-24 18:14:08 +07:00
<SupportedFormats />
2026-02-04 14:10:38 +07:00
<SearchStats />
2026-01-26 18:42:12 +07:00
</div>
</div>
</>
)
}