changes to version, ssg, and storage

This commit is contained in:
2026-01-16 15:26:49 +11:00
parent 402a7f69aa
commit 2fef051c2f
32 changed files with 3311 additions and 2743 deletions

View File

@@ -1,6 +1,15 @@
import { Code2, Github, Linkedin, LucideIcon, Notebook } from "lucide-react"
export const lucideOptions: { label: string, value: string }[] = [
{ label: "Code 2", value: "code-2" },
{ label: "Notebook", value: "notebook" },
{ label: "Github", value: "github" },
{ label: "Linkedin", value: "linkedin" },
]
];
export const lucidIconMap: Record<string, LucideIcon> = {
"code-2": Code2,
"notebook": Notebook,
"github": Github,
"linkedin": Linkedin,
};