"use client"; import { FC } from "react"; import { OpenSearchWrapper } from "@link-stack/leafcutter-ui"; type HomeProps = { url: string; }; export const Home: FC = ({ url }) => ( );