Skip to content

Commit

Permalink
Add WPCOM hosting features.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkguidaven committed Apr 29, 2024
1 parent 4a94de4 commit 90a019e
Showing 1 changed file with 49 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import page from '@automattic/calypso-router';
import { blockMeta, code, info, levelUp, shuffle, tip } from '@wordpress/icons';
import { useTranslate } from 'i18n-calypso';
import Layout from 'calypso/a8c-for-agencies/components/layout';
import LayoutBody from 'calypso/a8c-for-agencies/components/layout/body';
Expand All @@ -14,6 +15,7 @@ import {
A4A_MARKETPLACE_LINK,
} from 'calypso/a8c-for-agencies/components/sidebar-menu/lib/constants';
import HostingOverview from '../common/hosting-overview';
import HostingOverviewFeatures from '../common/hosting-overview-features';
import useShoppingCart from '../hooks/use-shopping-cart';
import ShoppingCart from '../shopping-cart';

Expand Down Expand Up @@ -76,6 +78,53 @@ export default function WpcomOverview() {
title={ translate( 'Powerful development & platform tools' ) }
subtitle={ translate( 'Build for developers, by developers' ) }
/>

<HostingOverviewFeatures
items={ [
{
icon: code,
title: translate( 'WPI-CLI' ),
description: translate(
`Run WP-CLI commands to manage users, plugins, themes, site settings, and more.`
),
},
{
icon: info,
title: translate( '24/7 Expert Support' ),
description: translate(
'When you win, we win. That’s why our team of WordPress professionals is always available to help.'
),
},
{
icon: blockMeta,
title: translate( 'Easy Migrations' ),
description: translate(
`We'll migrate your sites for free or you can use our powerful plugin to do it yourself - we're here to help.`
),
},
{
icon: levelUp,
title: translate( '30-Day Money-Back Guarantee' ),
description: translate(
'We’re so sure you’ll be satisfied with Pressable that we offer you the world’s best WordPress hosting with no-strings-attached.'
),
},
{
icon: shuffle,
title: translate( 'Flexible Upgrades & Downgrades' ),
description: translate(
'Need to make a change? No problem. Our plans are flexible, so they grow with your business.'
),
},
{
icon: tip,
title: translate( '100% Uptime Guarantee' ),
description: translate(
'You need reliability - we promise it. Our cloud-based architecture ensures success by making your site available all day, every day.'
),
},
] }
/>
</LayoutBody>
</Layout>
);
Expand Down

0 comments on commit 90a019e

Please sign in to comment.