-
-
Here's what we found
-
-
-
- );
-}
diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx
new file mode 100644
index 0000000..9b09de3
--- /dev/null
+++ b/src/app/search/page.tsx
@@ -0,0 +1,26 @@
+import SearchResults from '@/components/SearchResults';
+
+export default function SearchPage({
+ searchParams,
+}: {
+ searchParams: { [key: string]: string | string[] | undefined };
+}) {
+ let term = searchParams.term;
+
+ if (term === undefined) {
+ term = '';
+ }
+
+ if (Array.isArray(term)) {
+ term = term.length > 0 ? term[0] : '';
+ }
+
+ return (
+