├── .npmrc ├── .stackblitzrc ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── app.mjs ├── astro-imagetools.config.mjs ├── astro.config.mjs ├── package.json ├── public └── favicon.ico ├── sandbox.config.json └── src ├── images ├── elva-480w-close-portrait.jpg └── elva-800w.jpg ├── layouts ├── LayoutsLayout.astro ├── MainLayout.astro └── PlaceholderLayout.astro ├── pages ├── api │ ├── renderBackgroundImage.astro │ ├── renderBackgroundPicture.astro │ ├── renderImg.astro │ └── renderPicture.astro ├── components │ ├── BackgroundImage.astro │ ├── BackgroundPicture.astro │ ├── Img.astro │ └── Picture.astro ├── index.md ├── layout │ ├── constrained.astro │ ├── fill.astro │ ├── fixed.astro │ └── fullWidth.astro └── placeholder │ ├── blurred.astro │ ├── dominantColor.astro │ ├── none.astro │ └── tracedSVG.astro └── styles └── index.css /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/.npmrc -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/.stackblitzrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/README.md -------------------------------------------------------------------------------- /app.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/app.mjs -------------------------------------------------------------------------------- /astro-imagetools.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/astro-imagetools.config.mjs -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /src/images/elva-480w-close-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/images/elva-480w-close-portrait.jpg -------------------------------------------------------------------------------- /src/images/elva-800w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/images/elva-800w.jpg -------------------------------------------------------------------------------- /src/layouts/LayoutsLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/layouts/LayoutsLayout.astro -------------------------------------------------------------------------------- /src/layouts/MainLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/layouts/MainLayout.astro -------------------------------------------------------------------------------- /src/layouts/PlaceholderLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/layouts/PlaceholderLayout.astro -------------------------------------------------------------------------------- /src/pages/api/renderBackgroundImage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/api/renderBackgroundImage.astro -------------------------------------------------------------------------------- /src/pages/api/renderBackgroundPicture.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/api/renderBackgroundPicture.astro -------------------------------------------------------------------------------- /src/pages/api/renderImg.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/api/renderImg.astro -------------------------------------------------------------------------------- /src/pages/api/renderPicture.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/api/renderPicture.astro -------------------------------------------------------------------------------- /src/pages/components/BackgroundImage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/components/BackgroundImage.astro -------------------------------------------------------------------------------- /src/pages/components/BackgroundPicture.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/components/BackgroundPicture.astro -------------------------------------------------------------------------------- /src/pages/components/Img.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/components/Img.astro -------------------------------------------------------------------------------- /src/pages/components/Picture.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/components/Picture.astro -------------------------------------------------------------------------------- /src/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/index.md -------------------------------------------------------------------------------- /src/pages/layout/constrained.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/layout/constrained.astro -------------------------------------------------------------------------------- /src/pages/layout/fill.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/layout/fill.astro -------------------------------------------------------------------------------- /src/pages/layout/fixed.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/layout/fixed.astro -------------------------------------------------------------------------------- /src/pages/layout/fullWidth.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/layout/fullWidth.astro -------------------------------------------------------------------------------- /src/pages/placeholder/blurred.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/placeholder/blurred.astro -------------------------------------------------------------------------------- /src/pages/placeholder/dominantColor.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/placeholder/dominantColor.astro -------------------------------------------------------------------------------- /src/pages/placeholder/none.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/placeholder/none.astro -------------------------------------------------------------------------------- /src/pages/placeholder/tracedSVG.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/pages/placeholder/tracedSVG.astro -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafidMuhymin/astro-image-demo/HEAD/src/styles/index.css --------------------------------------------------------------------------------