logoalt Hacker News

macroteamtoday at 5:16 AM1 replyview on HN

the prediction wasn't even wrong, it just split in two. deploying a static site in 2026 is genuinely easier than 1998. you drag a folder into netlify and you're done, no ISP instructions, no FTP client, no guy with a tarp. what exploded is everything before the deploy. and the funny thing is the actual complaint buried in this thread, "i don't want to paste my nav into every page and update it by hand," is the exact problem we've spent 25 years re-solving. frames, then SSI, then php includes, then templating engines, then the whole frontend framework industry. react is, underneath everything, a really elaborate way to not repeat your navbar.


Replies

lelanthrantoday at 6:23 AM

> react is, underneath everything, a really elaborate way to not repeat your navbar.

That specific use-case is now replaced by having a single, small webcomponent for client-side includes.

    <cs-include remote-src="..."></cs-include>
Is a much better dev-XP than configuring the server, then tying your sources to that specific server.