An interactive educational site on circuit quantum electrodynamics (cQED), built with Next.js and MDX.
Live at: circuit-quantum-electrodynamics.vercel.app
This site covers the theory and physics of circuit QED — the study of quantum light-matter interactions implemented with superconducting circuits. Content is written in MDX, allowing LaTeX-rendered equations (via KaTeX) alongside interactive React components.
- Framework: Next.js 16 (App Router)
- Content: MDX with
remark-mathandrehype-katexfor LaTeX rendering - Styling: Tailwind CSS v4
- Language: TypeScript
Install dependencies and run the development server:
npm install
npm run devOpen http://localhost:3000 in your browser.
app/ # Next.js App Router pages and layouts
components/ # Reusable React components
content/ # MDX content files (site pages and articles)
public/ # Static assets
Content lives in content/ as .mdx files. You can use standard Markdown, React components, and LaTeX math:
Inline math: $\hat{H} = \hbar \omega \hat{a}^\dagger \hat{a}$
Block math:
$$
H = 4E_C \hat{n}^2 - E_J \cos\hat{\phi}
$$The site is deployed on Vercel. Pushes to main trigger automatic deployments.