C:\Users\legendodin\skills>_
// skills

The full stack.
Every layer.

Five years of front-end focus. Fourteen years of systems depth before that. The percentages below reflect production use, not tutorials.

// frontend frameworks
React / Next.js
5 yrs95%
Angular 19
1 yr intensive95%
TypeScript
5 yrs93%
JavaScript (ES2015+)
10 yrs92%
Svelte / SvelteKit
4 yrs90%
RxJS
2 yrs88%
frontend_frameworks.example.tsread-only
1
2
3
4
5
6
7
8
9
// Next.js App Router — RSC page
// Zero JS shipped for static content
export default async function ProjectsPage() {
const projects = await db.query(sql`
SELECT * FROM projects
ORDER BY date DESC
`);
return <ProjectGrid projects={projects} />;
}