MNMir N. Aliincodetiger.hashnode.dev·Jun 30, 2023 · 1 min readreact nextjs isMobile on statically generated pagesmost solutions you'll find for determining whether a user is viewing your web app on mobile will not work on statically generated pages this is the cleanest solution i could come up with const [isMobile, setIsMobile] = React.useState<number>(false); ...00
MNMir N. Aliincodetiger.hashnode.dev·Jun 27, 2023 · 2 min readnextjs images - fill parent container while preserving original aspect rationext/image is a powerful component that handles compression and caching for you. that means - faster load times with smaller payloads. getting the image to fill the parent container while preserving the original aspect ratio is a bit complicated, so ...00