import { Icon, Card } from "../../components"; import { __ } from "@wordpress/i18n"; import { mainDemo, demo2, demo3, demo4, demo5 } from "../../components/images"; const StarterSites = () => { const cardList = [ { heading: __('Default', 'blossom-fashion'), imageurl: mainDemo, buttonUrl: __('https://blossomthemesdemo.com/blossom-fashion-pro/', 'blossom-fashion'), }, { heading: __('Travel', 'blossom-fashion'), imageurl: demo2, buttonUrl: __('https://blossomthemesdemo.com/fashion-pro-travel/', 'blossom-fashion'), }, { heading: __('Stylish', 'blossom-fashion'), imageurl: demo3, buttonUrl: __('https://blossomthemesdemo.com/fashion-pro-stylish/', 'blossom-fashion'), }, { heading: __('Diva', 'blossom-fashion'), imageurl: demo4, buttonUrl: __('https://blossomthemesdemo.com/fashion-pro-diva/', 'blossom-fashion'), }, { heading: __('LifeStyle', 'blossom-fashion'), imageurl: demo5, buttonUrl: __('https://blossomthemesdemo.com/fashion-pro-lifestyle/', 'blossom-fashion'), } ] return ( <>
{__('View All Demos', 'blossom-fashion')}
); } export default StarterSites;