this blog post is made with the new editor!
So far I can upload images:
have it positioned
however I want
make some lists:
and also I can add some code :)
this is a random snippet from the codebase:
1import { StaticImageData } from "next/image";23export type ImageType = {4 src: StaticImageData;5 width: number;6 height: number;7 alt: string;8};