jonas-dev
jonas-devprojects.jsx
ProjectsPreview

Projects

4 repositories
jonas-dev
LiveVercel

This portfolio site — a VS Code–styled app built with Next.js, React, and Tailwind.

https://jonas-dev-mu.vercel.app/
Deployed on VercelOpen ↗
vscode-ui

VS Code–styled app shell used to build this site.

★ 128Open
cli-tools

Developer productivity CLI written in Node.

★ 64Open
design-system

Shared React components and tokens.

★ 32Open
Open to part-time opportunities

Available for part-time / freelance roles. Comfortable working with:

C#.NETWinFormsSQL ServerDapperT-SQLNext.jsReactTypeScriptTailwind CSSSupabaseGitGitHubVercel
Contact me
1const projects = [
2 { name: "jonas-dev", url: "https://jonas-dev-mu.vercel.app/"},
3 { name: "vscode-ui", stars: 128},
4 { name: "cli-tools", stars: 64},
5 { name: "design-system", stars: 32},
6]
7
8// Projects grid — link each card to your deployed apps.
9export default function Projects() {
10 return (
11 <section className="grid grid-cols-2 gap-4 p-8">
12 {projects.map((p) => (
13 <article key={p.name} >
14 <h2>{p.name}</h2>
15 {p.url && <a href={p.url}>Live</a>
16 </article>
17 ))
18 </section>
19 )
20}