About This Site
Built with Next.js App Router but behaving like a traditional website.
How It Works
This website is built with Next.js 16 (App Router) but configured to work like a traditional multi-page application:
- Uses regular HTML
<a>tags instead of Next.js Link components - Every page has
dynamic = 'force-dynamic'to prevent static optimization - Each navigation triggers a full browser reload
- Pages are server-rendered on every request
- No client-side routing or prefetching
Server Rendering Info
This page was rendered at:
2025-11-11T14:22:17.738ZGo back to the Home page and notice the full page reload in your browser's loading indicator.
Why This Approach?
While modern SPAs offer instant navigation, traditional multi-page sites have advantages:
- Simpler mental model - works like classic websites
- Clear separation between pages
- Browser history and back button work naturally
- Fresh server-rendered content on every visit
- No client-side state management complexity
🚀 Vercel Deployment
This site is fully compatible with Vercel's free hosting tier. Each page will be deployed as a serverless function that executes on every request, ensuring fresh content delivery without any static caching.