+ {productsData.map((product, index) => (
+
);
-}
+}
\ No newline at end of file
diff --git a/src/components/products.js b/src/components/products.js
deleted file mode 100644
index 7ce002a..0000000
--- a/src/components/products.js
+++ /dev/null
@@ -1,3 +0,0 @@
-const Products = [];
-
-export default Products;
diff --git a/src/components/products.ts b/src/components/products.ts
new file mode 100644
index 0000000..95fa6cb
--- /dev/null
+++ b/src/components/products.ts
@@ -0,0 +1,18 @@
+export type Product = {
+ imageUrl: string;
+ title: string;
+ description: string;
+ url: string;
+};
+
+const Products: Product[] = [];
+
+export default Products;
+
+// Sample product data
+// {
+// imageUrl: "",
+// title: "",
+// description: "",
+// url: "",
+// },
\ No newline at end of file