With the Highlight component, you can spotlight words.
import { Highlight } from "@/components/highlight";
function Example() {
return (
<Highlight
query="spotlight"
text="With the Highlight component, you can spotlight words."
/>
);
}