URL Structure
The site uses a two-route layout: a root route (/) and the actual content route (/n).
Visiting
war.re/ automatically redirects to war.re/n via an HTML meta refresh tag (<meta httpEquiv="refresh" content="0; url=/n" />). Because the project uses Next.js static export, there is no server available to perform HTTP-level redirects (e.g., 301/302). The meta refresh is the standard client-side fallback for static sites.<noscript> fallback link to /n is also included on the root page for the rare case where a browser has JavaScript disabled and cannot process the meta refresh`.
The actual homepage content lives entirely in main/pages/n/index.tsx and is served at war.re/n.
Page Content
The homepage centers its content in a constrained column. The rendered content, in order, is:- Ryan Warren — displayed as the page’s main heading
- Software Engineer — a subtitle rendered at normal font weight
- A short bio identifying Ryan as a Seattle-based Software Engineer working at Stripe
- A link to his current side projects at wrixton.xyz
- A link to his online resume at ryan.war.re/n
- Social icon links for GitHub, LinkedIn, and Stack Overflow
- A footer copyright line:
© {year} war.re
Social and External Links
| Link | Destination |
|---|---|
| GitHub | github.com/rwwarren |
| linkedin.com/in/ryanwwarren | |
| Stack Overflow | stackoverflow.com/users/1879792/ryan-warren |
| Side project | wrixton.xyz |
| Online resume | ryan.war.re/n |
Image components (30×30px SVGs), each wrapped in a Next.js Link component that opens in a new tab with rel="noopener noreferrer".
Open Graph and Twitter Card Metadata
Both the/ and /n routes include Open Graph and Twitter Card <meta> tags, configured in a Next.js <Head> block, so that sharing either URL on social platforms produces a rich preview card.
<link> on both routes points to https://war.re/n, preventing search engines from indexing the redirect page as a duplicate.
Component Structure
The/n page uses three Next.js built-in components:
Head
Injects
<title>, <meta>, Open Graph, and Twitter Card tags into the document <head>.Link
Wraps all outbound anchors and the internal resume link, enabling prefetch behaviour on internal routes.
Image
Renders the social icon SVGs with explicit
width and height attributes, preventing layout shift.