Skip to content

Commit

Permalink
Manage Inventory section on Sales Channel page
Browse files Browse the repository at this point in the history
  • Loading branch information
aratidgr8 committed Jul 5, 2024
1 parent 4e03618 commit 065dae7
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 17 deletions.
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '472fb80228c8d08bce35');
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => 'b3c4a5735aea8754209f');
58 changes: 42 additions & 16 deletions src/components/SalesChannel.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { ReactComponent as WarehouseFeeds } from "../icons/sales-channel/warehou
import { ReactComponent as ListingPresets } from "../icons/sales-channel/listing-presets.svg";
import { ReactComponent as PurchaseOrders } from "../icons/sales-channel/purchase-orders.svg";
import { ReactComponent as Accounting } from "../icons/sales-channel/accounting.svg";
import { ReactComponent as EcomdashBulletPoint} from "../icons/sales-channel/ecomdash-bullet-point.svg";

export function SalesChannel(){
return(
Expand All @@ -26,16 +27,13 @@ export function SalesChannel(){
<h2 className="nfd-text-[#0F172A] nfd-text-lg nfd-font-medium nfd-pb-1.5">
{__("Sell your products everywhere, confidently, with Ecomdash.", "wp-module-ecommerce")}
</h2>
<p className="nfd-text-[#4A5567]">
<p className="nfd-text-[#4A5567] nfd-pb-7">
{__("With ecomdash, you can manage different sales channels all in one place.", "wp-module-ecommerce")}
</p>
<p className="nfd-text-[#4A5567]">
<br />
{__("Simply connect your business accounts from Amazon, Etsy or Walmart to", "wp-module-ecommerce")}
</p>
<p className="nfd-text-[#4A5567]">
<br />
{__("your ecomdash platform and easily manage products, customer orders and", "wp-module-ecommerce")}
</p>
<p className="nfd-text-[#4A5567] nfd-pb-7">
<br />
{__("more saving you valuable time.", "wp-module-ecommerce")}
</p>
<Button
Expand All @@ -48,16 +46,44 @@ export function SalesChannel(){
<Ecomdash className="nfd-flex-none nfd-self-start" />
</div>

<div className="">
<h2>{__("Manage inventory across multiple platforms", "wp-module-ecommerce")}</h2>
<Inventory />
<ul>
<li>{__("Enjoy near real-time inventory updates for an unlimited number of channels with our inventory management software.", "wp-module-ecommerce")}</li>
<li>{__("Manage product levels across multiple warehouses without the fear of overselling.", "wp-module-ecommerce")}</li>
<li>{__("Accurately sync kits, multipacks, and components without any headaches.", "wp-module-ecommerce")}</li>
</ul>
<InventoryBrands />
<div className="nfd-border nfd-border-[#E2E8F0] nfd-bg-[#F9F9F9] nfd-rounded-lg nfd-p-4 nfd-mt-10">
<div className="nfd-flex nfd-flex-row nfd-flex-wrap nfd-gap-6">
<div className="nfd-flex-none">
<h2 className="nfd-text-[#111729] nfd-font-medium nfd-text-base nfd-mb-11">
{__("Manage inventory across multiple platforms", "wp-module-ecommerce")}
</h2>
<Inventory className="nfd-mt-4" />
</div>
<ul className="nfd-flex-1 nfd-mt-16 nfd-ml-3.5">
<li className="nfd-flex nfd-flex-row nfd-gap-6 nfd-mb-6">
<EcomdashBulletPoint className="nfd-flex-none" />
<span className="nfd-flex-1">
{__("Enjoy near real-time inventory updates for an unlimited number of", "wp-module-ecommerce")}
<br />
{__("number of channels with our inventory management software.", "wp-module-ecommerce")}
</span>
</li>
<li className="nfd-flex nfd-flex-row nfd-gap-6 nfd-mb-6">
<EcomdashBulletPoint className="nfd-flex-none" />
<span className="nfd-flex-1">
{__("Manage product levels across multiple warehouses without the fear of overselling.", "wp-module-ecommerce")}
<br />
{__("without the fear of overselling.", "wp-module-ecommerce")}
</span>
</li>
<li className="nfd-flex nfd-flex-row nfd-gap-6 nfd-mb-6">
<EcomdashBulletPoint className="nfd-flex-none" />
<span className="nfd-flex-1">
{__("Accurately sync kits, multipacks, and components without any headaches.", "wp-module-ecommerce")}
<br />
{__("headaches.", "wp-module-ecommerce")}
</span>
</li>
</ul>
</div>
<InventoryBrands />
</div>


<div className="">
<h2>{__("Order Management and Reporting", "wp-module-ecommerce")}</h2>
Expand Down

0 comments on commit 065dae7

Please sign in to comment.