diff --git a/src/components/mainPage/index.js b/src/components/mainPage/index.js new file mode 100644 index 0000000..9bdcc61 --- /dev/null +++ b/src/components/mainPage/index.js @@ -0,0 +1,3 @@ +export {default as PayPal} from './paypal'; +export {default as Purchase} from './purchase'; +export {default as ShowCase} from './showCase'; \ No newline at end of file diff --git a/src/components/mainPage/paypal.jsx b/src/components/mainPage/paypal.jsx new file mode 100644 index 0000000..5ccbdc0 --- /dev/null +++ b/src/components/mainPage/paypal.jsx @@ -0,0 +1,13 @@ +import React from "react"; + +const PayPal = () => { + return ( + <> +
+ +
+ + ); +}; + +export default PayPal; diff --git a/src/components/mainPage/purchase.jsx b/src/components/mainPage/purchase.jsx new file mode 100644 index 0000000..9c9294d --- /dev/null +++ b/src/components/mainPage/purchase.jsx @@ -0,0 +1,18 @@ +import React from "react"; + +const Purchase = () => { + return ( +
+
+
+ + 30 days Risk free return with 100% refund if not satisfied. Free return shipping + included. + +
+
+
+ ); +}; + +export default Purchase; diff --git a/src/components/mainPage/showCase.css b/src/components/mainPage/showCase.css new file mode 100644 index 0000000..5ee37ae --- /dev/null +++ b/src/components/mainPage/showCase.css @@ -0,0 +1,4 @@ +.photo { + height: auto; + width: 200px; + } \ No newline at end of file diff --git a/src/components/mainPage/showCase.jsx b/src/components/mainPage/showCase.jsx new file mode 100644 index 0000000..b4a0115 --- /dev/null +++ b/src/components/mainPage/showCase.jsx @@ -0,0 +1,39 @@ +import React from "react"; +import "./showCase.css"; +import { plc, w2c } from "../../assets"; + +const ShowCase = () => { + return ( +
+
+
+
+ product plc +
+ B1-14MR2................................ +
+
+
+
+
+ product w2c +
+ W2C ................... +
+
+
+
+
+ ); +}; + + +export default ShowCase;