sourcebot/packages/web/src/app/[domain]/page.tsx
Brendan Kellam 4ebe4e0475
Some checks failed
Publish to ghcr / build (linux/amd64, blacksmith-4vcpu-ubuntu-2404) (push) Has been cancelled
Publish to ghcr / build (linux/arm64, blacksmith-8vcpu-ubuntu-2204-arm) (push) Has been cancelled
Publish to ghcr / merge (push) Has been cancelled
chore(worker,web): Repo indexing stability improvements + perf improvements to web (#563)
2025-10-18 16:31:22 -07:00

11 lines
No EOL
285 B
TypeScript

import SearchPage from "./search/page";
interface Props {
params: Promise<{ domain: string }>;
searchParams: Promise<{ query?: string }>;
}
export default async function Home(props: Props) {
// Default to rendering the search page.
return <SearchPage {...props} />;
}