diff --git a/app/blog/Search.tsx b/app/blog/Search.tsx index 2b330f7..f2a8fff 100644 --- a/app/blog/Search.tsx +++ b/app/blog/Search.tsx @@ -6,6 +6,7 @@ import { useState } from "react"; import Image from "next/image"; import { useAutoAnimate } from "@formkit/auto-animate/react"; import Fuse from "fuse.js"; +import TextInput from "@/components/TextInput"; type PartialBlogPost = { slug: string; @@ -16,7 +17,7 @@ type PartialBlogPost = { title: string; summary: string; blurDataURL: string; -} +}; export default function Search({ title, @@ -45,10 +46,9 @@ export default function Search({

{title}

- setSearchTerm(e.target.value)} @@ -78,7 +78,7 @@ export default function Search({ />
-
+