diff --git a/src/assets/images/resources-ask.jpg b/src/assets/images/resources-ask.jpg new file mode 100644 index 0000000..ce4c307 Binary files /dev/null and b/src/assets/images/resources-ask.jpg differ diff --git a/src/components/Resources/index.jsx b/src/components/Resources/index.jsx index d879069..ace7aea 100644 --- a/src/components/Resources/index.jsx +++ b/src/components/Resources/index.jsx @@ -9,6 +9,7 @@ import products from "../../data/product_data.json"; import Layout from "../Partials/Layout"; import { ActivitiesTab, BlogTab, + QuestionsTab, CollectionTab, CreatedTab, HiddenProductsTab, @@ -39,7 +40,7 @@ export default function Resources(props) { // Category Components const tabComponents = { blog: , - onsale: , + onsale: , owned: , created: ( diff --git a/src/components/Resources/tabs/QuestionsTab.jsx b/src/components/Resources/tabs/QuestionsTab.jsx new file mode 100644 index 0000000..6a163c5 --- /dev/null +++ b/src/components/Resources/tabs/QuestionsTab.jsx @@ -0,0 +1,28 @@ +import ProductCardStyleTwo from "../../Cards/ProductCardStyleTwo"; +import DataIteration from "../../Helpers/DataIteration"; +import SearchCom from "../../Helpers/SearchCom"; + +export default function QuestionsTab({ className, products }) { + return ( + <> +
+
+
+ {/* filter-search */} +
+ +
+ +
+
+
+ + + +
+
+
+
+ + ); +} diff --git a/src/components/Resources/tabs/index.js b/src/components/Resources/tabs/index.js index 7768de7..8f6ccf1 100644 --- a/src/components/Resources/tabs/index.js +++ b/src/components/Resources/tabs/index.js @@ -5,9 +5,11 @@ import HiddenProductsTab from "./HiddenProductsTab"; import OnSaleTab from "./OnSaleTab"; import OwnTab from "./OwnTab"; import BlogTab from "./BlogTab"; +import QuestionsTab from "./QuestionsTab"; export { BlogTab, + QuestionsTab, ActivitiesTab, CollectionTab, CreatedTab,