/** * Search-box.ai * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * File: apps/web/app/page.tsx * Description: Home page — hero with blooming mark, question composer, recent sessions. */ import Link from "next/link"; import { sessions } from "@search-box/db"; import { ensureMigrated } from "@/lib/runner"; import { NewResearchForm } from "@/components/NewResearchForm"; import { Logo } from "@/components/Logo"; export const dynamic = "force-dynamic"; export default async function HomePage() { await ensureMigrated(); const recent = await sessions.list(12); return (

Don't search the web.
Search the answer space.

An autonomous research engine that forms hypotheses, hunts evidence, surfaces contradictions — and writes a fully sourced answer in front of you, live.

{recent.length > 0 && (

Recent research

)}
); }