This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
128 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { Button, Card, Title } from '@newfold/ui-component-library'; | ||
import { ReactComponent as TransformLogo } from '../../../../assets/svg/transformStore.svg'; | ||
|
||
const TransformStore = () => { | ||
return ( | ||
<Card | ||
className="wppbh-app-transform nfd-border-0 nfd-border-t md:nfd-border-t-0 nfd-shadow-none hover:nfd-bg-[#F2F9FE]" | ||
style={ { | ||
borderRadius: 0, | ||
} } | ||
> | ||
<Card.Content> | ||
<TransformLogo /> | ||
<Title size="4" className="nfd-leading-normal nfd-my-4"> | ||
{ __( 'Transform your store!', 'wp-plugin-bluehost' ) } | ||
</Title> | ||
<p> | ||
{ __( | ||
'Our eCommerce bundle includes a comprehensive suite of advanced tools designed to boost the performance of your WooCommerce store.', | ||
'wp-plugin-bluehost' | ||
) } | ||
</p> | ||
</Card.Content> | ||
<div className="nfd-flex nfd-justify-end nfd-gap-6 nfd-items-center"> | ||
<a href="admin.php?page=bluehost#/marketplace/product/6049dddb-1303-4c41-b3c0-242881697860"> | ||
<Button variant="secondary"> | ||
{ __( 'Learn More', 'wp-plugin-bluehost' ) } | ||
</Button> | ||
</a> | ||
</div> | ||
</Card> | ||
); | ||
}; | ||
|
||
export default TransformStore; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters