2023-08-18 05:30:25 +00:00
// placeholder xstate async service that returns a set of theme cards
export const fetchThemeCards = async ( ) = > {
return [
{
2023-09-20 06:36:20 +00:00
slug : 'twentytwentyone' ,
2023-08-18 05:30:25 +00:00
name : 'Twenty Twenty One' ,
description : 'The default theme for WordPress.' ,
2023-09-20 06:36:20 +00:00
image : 'https://i0.wp.com/s2.wp.com/wp-content/themes/pub/twentytwentyone/screenshot.png' ,
styleVariations : [ ] ,
2023-08-18 05:30:25 +00:00
} ,
{
2023-09-20 06:36:20 +00:00
slug : 'twentytwenty' ,
2023-08-18 05:30:25 +00:00
name : 'Twenty Twenty' ,
description : 'The previous default theme for WordPress.' ,
2023-09-20 06:36:20 +00:00
image : 'https://i0.wp.com/s2.wp.com/wp-content/themes/pub/twentytwenty/screenshot.png' ,
styleVariations : [ ] ,
} ,
{
slug : 'tsubaki' ,
name : 'Tsubaki' ,
description :
'Tsubaki puts the spotlight on your products and your customers. This theme leverages WooCommerce to provide you with intuitive product navigation and the patterns you need to master digital merchandising.' ,
image : 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tsubaki/screenshot.png' ,
styleVariations : [ ] ,
} ,
{
slug : 'winkel' ,
name : 'Winkel' ,
description :
'Winkel is a minimal, product-focused theme featuring Payments block. Its clean, cool look combined with a simple layout makes it perfect for showcasing fashion items – clothes, shoes, and accessories.' ,
image : 'https://i0.wp.com/s2.wp.com/wp-content/themes/pub/winkel/screenshot.png' ,
styleVariations : [
{
title : 'Default' ,
primary : '#ffffff' ,
secondary : '#676767' ,
} ,
{
title : 'Charcoal' ,
primary : '#1f2527' ,
secondary : '#9fd3e8' ,
} ,
{
title : 'Rainforest' ,
primary : '#eef4f7' ,
secondary : '#35845d' ,
} ,
{
title : 'Ruby Wine' ,
primary : '#ffffff' ,
secondary : '#c8133e' ,
} ,
] ,
2023-08-18 05:30:25 +00:00
} ,
] ;
} ;