diff --git a/docs/docs/overview.md b/docs/docs/overview.md
index 896620b..3db1a95 100644
--- a/docs/docs/overview.md
+++ b/docs/docs/overview.md
@@ -18,7 +18,7 @@ As configured by default, all of these are _lossless_ image optimizations that r
Out of the box, ImageOptimize allows for the optimization of `JPG`, `PNG`, `SVG`, & `GIF` images, but you can add whatever additional types you want. It also supports using [imgix](https://www.imgix.com/), [Thumbor](http://thumbor.org/), or [Sharp JS](https://nystudio107.com/blog/setting-up-your-own-image-transform-service) to create the responsive image transforms.
-It’s important to create optimized images for frontend delivery, especially for mobile devices. To learn more about it, read the [Creating Optimized Images in Craft CMS](https://nystudio107.com/blog/creating-optimized-images-in-craft-cms) article.
+It’s important to create optimized images for frontend delivery, especially for mobile devices. Thankfully, ImageOptimize includes `.imgTag()`, `pictureTag()` (with the ability to do "art direction"), and `linkPreloadTag()` convenience methods to make it easy to output modern optimized responsive images.
Once ImageOptimize is installed, optimized versions of image transforms are created without you having to do anything. This makes it great for client-proofing sites.
diff --git a/docs/docs/using.md b/docs/docs/using.md
index 876fae5..651f601 100644
--- a/docs/docs/using.md
+++ b/docs/docs/using.md
@@ -126,104 +126,6 @@ Normally ImageOptimize will regenerate image variants if you change an Optimized
If you plan to do this manually via the above console commands, you can disable this behavior via the `automaticallyResaveImageVariants` setting in `config.php`.
-## Dynamically creating Optimized Image Variants
-
-To dynamically create Optimized Image Variants in your templates without having to use the Field.
-
-**N.B.:** We recommend _against_ using Image Optimize via Twig if you can avoid it. If you create the Optimized Image Variants in your templates, the image transforms, placeholder images, and color palette extraction will all be done at pageload time. This means you’ll miss out on the advantages of using the OptimizedImages field, where all of that computation is done when an Asset is saved.
-
-To create Optimized Image Variants dynamically in your templates, you can do:
-
-```twig
-{% set optimizedImages = craft.imageOptimize.createOptimizedImages(
- someAsset,
- [
- {
- 'width': 200,
- 'useAspectRatio': true,
- 'aspectRatioX': 1.0,
- 'aspectRatioY': 1.0,
- 'retinaSizes': ['1'],
- 'quality': 82,
- 'format': 'jpg',
- },
- ]
-) %}
-
-```
-
-All of these fields are required, and they are analogous to the settings provided by the Field. The `retinaSizes` is an array of multipliers for the retina variants. For instance, if we wanted both normal resolution and 2x variants of the above image, we’d do:
-
-```twig
-{% set optimizedImages = craft.imageOptimize.createOptimizedImages(
- someAsset,
- [
- {
- 'width': 200,
- 'useAspectRatio': true,
- 'aspectRatioX': 1.0,
- 'aspectRatioY': 1.0,
- 'retinaSizes': ['1', '2'],
- 'quality': 82,
- 'format': 'jpg',
- },
- ]
-) %}
-
-```
-
-You can create as many Optimized Image Variants as you like, by just including another array of settings. For example, to create both 200x and 400x image variants, we could do:
-
-```twig
-{% set optimizedImages = craft.imageOptimize.createOptimizedImages(
- someAsset,
- [
- {
- 'width': 200,
- 'useAspectRatio': true,
- 'aspectRatioX': 1.0,
- 'aspectRatioY': 1.0,
- 'retinaSizes': ['1'],
- 'quality': 82,
- 'format': 'jpg',
- },
- {
- 'width': 400,
- 'useAspectRatio': true,
- 'aspectRatioX': 1.0,
- 'aspectRatioY': 1.0,
- 'retinaSizes': ['1'],
- 'quality': 82,
- 'format': 'jpg',
- },
- ]
-) %}
-```
-
-The `optimizedImages` object that is returned to you can be used in your templates as described in the *Displaying images on the frontend* section.
-
-**N.B.:** Because they are lengthy operations, by default the generation of the dominant color palette and the generation of the placeholder silhouette are off. You can enable them via an additional parameter passed down to `craft.imageOptimize.createOptimizedImages`:
-
-```twig
-{% set optimizedImages = craft.imageOptimize.createOptimizedImages(
- someAsset,
- [
- {
- 'width': 200,
- 'useAspectRatio': true,
- 'aspectRatioX': 1.0,
- 'aspectRatioY': 1.0,
- 'retinaSizes': ['1'],
- 'quality': 82,
- 'format': 'jpg',
- },
- ],
- true,
-) %}
-```
-
-The third parameter is the `generatePlacholders` setting, which disables generating all placeholders and dominant color palette extraction.
-
## Displaying images on the frontend
ImageOptimize makes it easy to create responsive images in your frontend templates. There are two primary ways to create responsive images: using the `` element or using the `