import { __ } from "@wordpress/i18n" import { themeClub, themeInstallation, gdpr, seo, pluginsSetup, vipSupport } from "../../components/images" const Offers = () => { const offerBannerLists = [ { image: themeClub, imageUrl: cw_dashboard.theme_club_upgrade, title: __("Theme Club", "benevolent"), }, ] const offerCardLists = [ { image: themeInstallation, imageUrl: cw_dashboard.theme_install, title: __("Theme Installation & Setup", "benevolent"), }, { image: gdpr, imageUrl: cw_dashboard.gdpr_setup, title: __("GDPR Compliance", "benevolent"), }, { image: seo, imageUrl: cw_dashboard.seo_setup, title: __("Must Have SEO Setup", "benevolent"), }, { image: pluginsSetup, imageUrl: cw_dashboard.plugin_setup, title: __("Must Have Plugins Setup", "benevolent"), }, { image: vipSupport, imageUrl: cw_dashboard.vip_support, title: __("VIP Support", "benevolent"), }, ] return ( <>
> ) } export default Offers;