This commit is contained in:
Hadi
2026-01-01 19:06:29 +01:00
commit 8a4ca97c40
48 changed files with 3519 additions and 0 deletions

48
src/config.ts Normal file
View File

@@ -0,0 +1,48 @@
/**
* Social media links configuration
*/
export interface SocialLinks {
github?: string;
linkedin?: string;
twitter?: string;
bluesky?: string;
instagram?: string;
youTube?: string;
codetips?: string;
kofi?: string;
medium?: string;
}
/**
* Main site configuration interface
*/
export interface SiteConfig {
name: string;
title: string;
description: string;
avatar: string;
location: string;
socialLinks: SocialLinks;
gpgKey?: string;
}
/**
* Site configuration object
* Update these values to customize your portfolio
*/
export const siteConfig: SiteConfig = {
name: "Hadi",
title: "Infosec engineer.",
description:
"Infosec engineer passionate about Linux/NixOS, blockchains, OSINT & FOSS. Hacking with Go, exploring open tech, and contributing whenever I can 🐧",
avatar: "/avatar.png",
location: "🇫🇷 France",
socialLinks: {
github: "https://github.com/anotherhadi",
twitter: "https://x.com/anotherhadi",
bluesky: "https://bsky.app/profile/hadi1842.bsky.social",
kofi: "https://ko-fi.com/anotherhadi",
medium: "https://medium.com/anotherhadi",
},
gpgKey: "/anotherhadi.asc",
};