Added nix icon
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m8s

This commit is contained in:
2025-12-25 01:29:49 -07:00
parent e9fed3a5b7
commit f4d0ae2780
2 changed files with 9 additions and 1 deletions

View File

@@ -66,6 +66,7 @@ export default defineConfig({
"kotlin", "kotlin",
"swift", "swift",
"flutter", "flutter",
"nixos",
], ],
}, },
}), }),

View File

@@ -1,6 +1,5 @@
import type { Config } from "./types"; import type { Config } from "./types";
// Import Lucide Icons
import { Home, Newspaper, FileUser, CodeXml, Megaphone } from "lucide-preact"; import { Home, Newspaper, FileUser, CodeXml, Megaphone } from "lucide-preact";
import logo from "./assets/logo_real.webp"; import logo from "./assets/logo_real.webp";
@@ -21,6 +20,7 @@ const DOCKER_ICON = "simple-icons:docker" as const;
const KOTLIN_ICON = "simple-icons:kotlin" as const; const KOTLIN_ICON = "simple-icons:kotlin" as const;
const SWIFT_ICON = "simple-icons:swift" as const; const SWIFT_ICON = "simple-icons:swift" as const;
const FLUTTER_ICON = "simple-icons:flutter" as const; const FLUTTER_ICON = "simple-icons:flutter" as const;
const NIX_ICON = "simple-icons:nixos" as const;
export const config: Config = { export const config: Config = {
personalInfo: { personalInfo: {
@@ -336,6 +336,13 @@ export const config: Config = {
icon: FLUTTER_ICON, icon: FLUTTER_ICON,
ariaLabel: "Flutter", ariaLabel: "Flutter",
}, },
{
id: "nix",
name: "Nix",
url: "https://nix.org",
icon: NIX_ICON,
ariaLabel: "Nix",
},
], ],
navigationItems: [ navigationItems: [