+
+
+ Meal
+
+
+ {filters ?
+ <>
+
+
+
+
+
+
+
+ >
+ :
+ <>
+
+
+
+
+
+
+
+ >
+ }
+
+
+
+
+ Cook Time
+
+
+ {filters ?
+ <>
+
+
+
+
+
+ >
+ :
+ <>
+
+
+
+
+
+ >
+ }
+
+
+
+
+ Difficulty
+
+
+ {filters ?
+ <>
+
+
+
+
+
+ >
+ :
+ <>
+
+
+
+
+
+ >
+ }
+
+
+
+
+ Serving Size
+
+
+ {filters ?
+ <>
+
+
+
+
+
+ >
+ :
+ <>
+
+
+
+
+
+ >
+ }
+
+
+
+
+
+
+ );
+}
diff --git a/web/src/pages/Home.tsx b/web/src/pages/Home.tsx
index 04f34b8..db9bc38 100644
--- a/web/src/pages/Home.tsx
+++ b/web/src/pages/Home.tsx
@@ -1,4 +1,4 @@
-import { Fragment, useEffect, useState } from "react";
+import { useEffect, useState } from "react";
import SalmonVideo from "../assets/videos/salmon_video.mp4";
import Banner from "../components/Banner";
import ROUTE_CONSTANTS from "../types/routes";
@@ -7,6 +7,7 @@ import RecipeLarge from "../components/cards/RecipeCardLarge";
import type { Recipe } from "../types/recipe";
import RecipeCardSmall from "../components/cards/RecipeCardSmall";
import ContentCardSmall from "../components/cards/ContentCardSmall";
+import RecipeSearchBar from "../components/inputs/RecipeSearchBar";
export default function Home() {
const [loggedIn, isLoggedIn] = useState