--- import Picture from "~/components/core/Picture.astro"; import { findPostsByIds } from "~/utils/fetchPosts"; import { findImage } from "~/utils/findImage"; import { getPermalink } from "~/utils/permalinks"; const { } = Astro.props; const ids = [ "get-started-website-with-astro-tailwind-css", "how-to-customize-astrowind-to-your-brand", "useful-resources-to-create-websites", "astrowind-template-in-depth" ] const items = (await Promise.all((await findPostsByIds(ids)) .map(async (item) => ({ ...item, image: await findImage(item.image) } )))); ---

Find out more content in our Blog

The blog will be used to display AstroWind documentation. Each new article will be an important step that you will need to know to be an expert in creating a website using Astro + Tailwind CSS The blog does not exist yet, but very soon. Astro is a very interesting technology. Thanks.

{items.map((post) => ( ))}