How to align text and photo on the same line?

Hi @Ahmed_Hasan,

You will need to put it in a box as indicated in this example from the docs: Box Function – Typst Documentation

Some text #box(image(…)) and more text 

Reason being:

All elements except inline math, text, and boxes are block-level and cannot occur inside of a paragraph. The box function can be used to integrate such elements into a paragraph. Boxes take the size of their contents by default but can also be sized explicitly.