diff --git a/src/AppRouters.jsx b/src/AppRouters.jsx index 26f1a00..4d84db3 100644 --- a/src/AppRouters.jsx +++ b/src/AppRouters.jsx @@ -14,7 +14,7 @@ import ContactsPage from './views/ContactsPage' import UserPage from './views/UserPage' import CalendarPage from './views/CalendarPage' import SettingsPage from './views/SettingsPage' - +import ProductPage from './views/ProductPage' function AppRouters() { return ( @@ -32,6 +32,7 @@ function AppRouters() { {/* protected routes */} }> } /> + } /> } /> } /> } /> diff --git a/src/component/comments/Comments.js b/src/component/comments/Comments.js index 85baab0..7357d7a 100644 --- a/src/component/comments/Comments.js +++ b/src/component/comments/Comments.js @@ -358,8 +358,8 @@ export default function Comments(){

Landing page Designer...

- - + {/**/} + {/**/}
@@ -373,16 +373,16 @@ export default function Comments(){
-
-
-
- -

Wireframe

-

(220.MB)

-
-
- -
+ {/*
*/} + {/*
*/} + {/*
*/} + {/* */} + {/*

Wireframe

*/} + {/*

(220.MB)

*/} + {/*
*/} + {/*
*/} + {/* */} + {/*
*/}

Click here to ReplyorForward

diff --git a/src/component/contacts/Contacts.js b/src/component/contacts/Contacts.js index bce6877..ceb3195 100644 --- a/src/component/contacts/Contacts.js +++ b/src/component/contacts/Contacts.js @@ -358,8 +358,8 @@ export default function Contacts(){

Landing page Designer...

- - + {/**/} + {/**/}
@@ -373,16 +373,16 @@ export default function Contacts(){
-
-
-
- -

Wireframe

-

(220.MB)

-
-
- -
+ {/*
*/} + {/*
*/} + {/*
*/} + {/* */} + {/*

Wireframe

*/} + {/*

(220.MB)

*/} + {/*
*/} + {/*
*/} + {/* */} + {/*
*/}

Click here to ReplyorForward

diff --git a/src/component/home/Products.jsx b/src/component/home/Products.jsx index 8ab573a..fb88755 100644 --- a/src/component/home/Products.jsx +++ b/src/component/home/Products.jsx @@ -37,15 +37,18 @@ export default function Products() {
{products && products.map((product, index) => (
- ))} {/*
*/} diff --git a/src/component/product/ProductFactory.jsx b/src/component/product/ProductFactory.jsx new file mode 100644 index 0000000..4fed339 --- /dev/null +++ b/src/component/product/ProductFactory.jsx @@ -0,0 +1,52 @@ +import React from "react"; +import BreadcrumbComBS from "../breadcrumb/BreadcrumbComBS"; +import getImage from "../../utils/getImage"; + + +export default function ProductFactory(){ + + return( + <> + +
+ <> + +
+
+
+ Card image cap +
+

Commitment

+

Commitment is something that comes from understanding that everything has its price and then having the willingness to pay that price. This is important because nobody wants to put significant effort into something, only to find out after the fact that the price was too high.The price is something not necessarily defined as financial. It could be time, effort, sacrifice, money or perhaps, something else.

+ Read More +
+
+
+
+
+ {/*Card image cap*/} +
+

Information

+

Start with your goals in mind and then work possible.ith yand Goals. If the plan doesn’t support the vision then change it!

+
+
    +
  • FAQ pages is for consistency
  • +
  • Information
  • +
  • Related content
  • +
+ +
+
+
+ + + + + +
+ + ) +} \ No newline at end of file diff --git a/src/links/siteLinks.js b/src/links/siteLinks.js index 2bceea4..952d319 100644 --- a/src/links/siteLinks.js +++ b/src/links/siteLinks.js @@ -2,6 +2,7 @@ const siteLinks = { error: '*', home: '/', dash: '/dash', + product: '/product/*', contacts: '/contacts', comments: '/comments', reports: '/reports', diff --git a/src/views/ProductPage.jsx b/src/views/ProductPage.jsx new file mode 100644 index 0000000..b3a7fda --- /dev/null +++ b/src/views/ProductPage.jsx @@ -0,0 +1,7 @@ +import React from 'react' +import ProductFactory from '../component/product/ProductFactory' +export default function ProductPage() { + return ( + + ) +}