Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- `app/` holds the App Router entry, layouts, and global styles; add new routes or metadata there.
Sign in to like and favorite skills
app/ holds the App Router entry, layouts, and global styles; add new routes or metadata there.components/ stores reusable sections and shadcn primitives (components/ui). Keep component-specific helpers alongside supporting files.lib/ centralizes utilities such as lib/utils.ts; share formatting or configuration helpers here.styles/ defines Tailwind layers, while public/ exposes static assets referenced by /asset.ext.components.json tracks shadcn inventory; update it via pnpm dlx shadcn@latest add <component> when generating UI.pnpm install restores dependencies after a fresh clone or registry change.pnpm dev runs the hot-reloading Next.js dev server on http://localhost:3000.pnpm build compiles the production bundle and TypeScript output; treat failures as blockers.pnpm start serves the built app locally, mirroring Vercel.pnpm lint runs the Next.js ESLint rules to enforce style and catch obvious bugs.cn helper in lib/utils.ts.components/Header.tsx) and keep route files kebab-case (app/waitlist/page.tsx); utilities stay camelCase.*.test.tsx next to the source or in __tests__/.pnpm lint, conduct a browser smoke test (nav, forms), and update screenshots for changed sections.Initialized repository for project SaaS landing page); keep messages imperative and under 72 characters.Refs #123 when relevant and split unrelated work into separate commits.pnpm build, manual QA notes), plus before/after visuals for UI updates.pnpm build locally and resolve console warnings beforehand..env.local; maintain .env.example entries so others can replicate setup safely.@vercel/analytics is enabled in app/layout.tsx; coordinate with product before adding new trackers or experiments.