feat: Project dialog, updated screenshots, migration to bun

This commit is contained in:
2025-11-17 17:35:54 +03:00
parent bb75f7cf2d
commit 10b5604fb4
33 changed files with 747 additions and 1236 deletions

19
lib/skillsList.js Normal file
View File

@@ -0,0 +1,19 @@
import { SiNextdotjs, SiTailwindcss, SiPostgresql, SiSupabase, SiReact, SiDocker, SiLinux, SiGo, SiPython, SiHtml5, SiJavascript, SiPhp, SiPrisma, SiMapbox, SiShadcnui } from "react-icons/si";
export const skillsList = [
{ name: "Next.js", icon: <SiNextdotjs /> },
{ name: "Tailwind", icon: <SiTailwindcss /> },
{ name: "Prisma", icon: <SiPrisma /> },
{ name: "Postgres", icon: <SiPostgresql /> },
{ name: "Supabase", icon: <SiSupabase /> },
{ name: "Shadcn", icon: <SiShadcnui /> },
{ name: "React", icon: <SiReact /> },
{ name: "Docker", icon: <SiDocker /> },
{ name: "Linux", icon: <SiLinux /> },
{ name: "HTML", icon: <SiHtml5 /> },
{ name: "JS", icon: <SiJavascript /> },
{ name: "Go", icon: <SiGo /> },
{ name: "PHP", icon: <SiPhp /> },
{ name: "Python", icon: <SiPython /> },
{ name: "Mapbox", icon: <SiMapbox /> },
];