I am not an expert in these methods, but this is a random list of ideas
you can look at this guide for mcscan which performs a protein-alignment of all genes https://github.com/tanghaibao/jcvi/wiki/MCscan-(Python-version)#microsynteny-visualization
this gives you just a gene-level view of microsynteny. I sometimes see the mcscan method called gene based or marker based alignment
if you want to see the per-base level alignment, that is often a "whole genome alignment". minimap2 is a common example of this
then there are perhaps hybrid methods, like AnchorWave. you can see that the steps of anchorwave uses first marker/gene based alignment, then uses those to extend the whole genome alignment. this was i believe successfully used in plants especially
https://github.com/baoxingsong/AnchorWave
then you can try to visualize results, which i think is a very interesting challenge. many tools do large scale visualizations like circos and syri but indeed, zooming in and getting microsynteny visualizations is useful
I develop jbrowse 2, which i think has some unique capabilities for zooming in and viewing alignments. you can follow the quickstart guide that includes loading a PAF file from minimap2 here https://jbrowse.org/jb2/docs/quickstart_web/#adding-a-synteny-track-from-a-paf-file
I also know there are lots of other tools, depending on your interest and I catalog them here https://cmdcolin.github.io/awesome-genome-visualization/?latest=true&tag=Comparative