alxpv-nextjs
Quick start
- •Read
/Users/alexaandrepaiva/alxpv-portfolio/AGENTS.md. - •Identify the route/component entrypoint:
- •Routes:
src/app/**/page.tsx,src/app/layout.tsx - •Layout/UI:
src/components/*
- •Routes:
- •Keep server components by default; add
"use client"only when required. - •Use Tailwind + shadcn/ui; use
cn()fromsrc/lib/utils.ts.
Implementation guardrails
- •Prefer minimal changes that match existing structure.
- •Don’t introduce new dependencies without adding an ADR in
plans/adr/. - •If adding UI primitives, prefer using/adding shadcn components under
src/components/ui/and keep edits minimal.
Done criteria
- •
npm run checkpasses. - •No untranslated user-facing strings introduced.
- •No console errors in dev.