diff --git a/client/src/pages/products/index.tsx b/client/src/pages/products/index.tsx index f7e6e09..9e206c1 100644 --- a/client/src/pages/products/index.tsx +++ b/client/src/pages/products/index.tsx @@ -1,738 +1,737 @@ import { Component, For } from "solid-js"; -// import Cards from "../../components/cards/Cards"; -// import CoreProducts from "../../data/Core-Product"; +import Cards from "../../components/cards/Cards"; +import CoreProducts from "../../data/Core-Product"; -export default function Products() { +const Products: Component<{}> = () => { return ( - //
- //
- // - //
+
+
+ +
- // - //
- //
- //

- // Products - //

+
+
+

+ Products +

- //
- //
- //
- // - //
+
+
+
+ +
- // - //
- //
- //
+ +
+
+
- //
- //

- // Products - //

+
+

+ Products +

- //
- // - //
- //
- //
-
-

Fuck you!

+
+
+ + {(res) => { + return ; + }} + +
+
+
+ +
); -} +}; -// export const Banner: Component = () => { -// return ( -//
-//
-//
-//
-//

-// Best Deal -//

-//

-// Save upto 50% -//

-//
-//
-// -//
-//
-//
-//
-//

-// RIBBON -//

-//

-// Save Upto 30% -//

-//
-//
-// -//
-//
-//
-//
-// ); -// }; +export default Products; + +export const Banner: Component = () => { + return ( +
+
+
+
+

+ Best Deal +

+

+ Save upto 50% +

+
+
+ +
+
+
+
+

+ RIBBON +

+

+ Save Upto 30% +

+
+
+ +
+
+
+
+ ); +};