This is pretty cool. Congrats on the launch! With anything, there will be multiple corner cases to handle, but I'm initially impressed!
Low hanging fruit feedback that would really improve the experience of many: I haven't been able to pinpoint it, but there seems to be double scroll bar enabled in both the container of the whole page (top navbar, and "non-content") and the actual wanted scrollbar inside the rendered content. Because of this, especially on mobile, when I try to scroll, the outside scrollbar "captured" my scroll input and I could never get past the Headline.
Might be a missing height: 100vh; or overflow-y: hidden in your min-h-screen class. Cheers!
Pro tip: Use 100dvh rather than 100vh. dvh is dynamic so it reacts to changes in the available device height. Useful as on mobile browsers the height of the window often changes when you use certain browser features
Low hanging fruit feedback that would really improve the experience of many: I haven't been able to pinpoint it, but there seems to be double scroll bar enabled in both the container of the whole page (top navbar, and "non-content") and the actual wanted scrollbar inside the rendered content. Because of this, especially on mobile, when I try to scroll, the outside scrollbar "captured" my scroll input and I could never get past the Headline.
Might be a missing height: 100vh; or overflow-y: hidden in your min-h-screen class. Cheers!