> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wrixton.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# War.re: Ryan Warren's Personal Site and Online Resume

> Explore War.re, Ryan Warren's personal homepage and online resume — a multi-domain Next.js monorepo deployed to war.re and ryan.war.re.

War.re is Ryan Warren's personal website, available at [war.re](https://war.re) and [ryan.war.re](https://ryan.war.re). The main site serves as a personal homepage introducing Ryan as a Seattle-based Software Engineer at Stripe, while the resume subdomain hosts his full online resume with work history, skills, and related activities. This documentation covers how the project is structured, how each site is built, and how to work with the codebase.

## What the Site Does

War.re combines two distinct web experiences under a single monorepo:

* **[war.re](https://war.re)** — A personal homepage with a brief bio, links to GitHub, LinkedIn, and Stack Overflow, and a pointer to the resume.
* **[ryan.war.re](https://ryan.war.re)** — A full online resume detailing Ryan's work experience at Stripe, Amazon, Porch, and others, along with technical skills and education.

Both sites are statically exported and deployed to Vercel, keeping hosting simple and fast with no server-side runtime.

## Technology Stack

Each app in the monorepo shares a consistent set of tools:

| Layer           | Choice                          |
| --------------- | ------------------------------- |
| Framework       | Next.js 16 (Pages Router)       |
| UI library      | React 19                        |
| Language        | TypeScript (strict mode)        |
| Package manager | Yarn                            |
| Deployment      | Vercel (static export)          |
| Linting         | ESLint (`next/core-web-vitals`) |
| Formatting      | Prettier                        |

<Note>
  War.re is open source on GitHub at [github.com/rwwarren/war.re](https://github.com/rwwarren/war.re). You can browse the full source, open issues, and follow the project's development there.
</Note>

## Explore the Docs

Dive into the documentation for each individual site to learn about their pages, components, and routing behavior.

<CardGroup cols={2}>
  <Card title="Main Site (war.re)" icon="house" href="/pages/main-site">
    Learn how the personal homepage at war.re is structured, how the root redirect works, and what the `/n` content route renders.
  </Card>

  <Card title="Resume (ryan.war.re)" icon="file-lines" href="/pages/resume">
    Explore the online resume at ryan.war.re, including the component architecture, work history data, and how the page is tested.
  </Card>
</CardGroup>
