diff --git a/src/pages/pricing.mdx b/src/pages/pricing.mdx index 1b7b1721..1795fad2 100644 --- a/src/pages/pricing.mdx +++ b/src/pages/pricing.mdx @@ -17,12 +17,15 @@ export const priceFormatter = new Intl.NumberFormat('en-GB', { {products && products.map(product => (

- {product.title} - {product.price && ( - <> - {priceFormatter.format(product.price)} - {product.perMonth && (<> per month)} - - )} + {product.title} - <> + {product.price + ? ( + <>{priceFormatter.format(product.price)} + {product.perMonth && (<> per month)} + + ) + : 'Free!' + }

{product.description}
diff --git a/src/products.json b/src/products.json index 57fc2749..0b616632 100644 --- a/src/products.json +++ b/src/products.json @@ -52,5 +52,13 @@ "text": "Register now", "href": "https://forms.gle/9fGwMgaWcWjNDjdAA" } + }, + { + "title": "Drupal module template", + "description": "If you're creating a new Drupal module, try starting with my free module template for Drupal 9 and 10.", + "link": { + "text": "Download", + "href": "https://github.com/opdavies/drupal-module-template" + } } ]