Files
Website/src/lib/config/user.ts
2025-11-29 16:40:05 +00:00

43 lines
1.9 KiB
TypeScript

// ============================================================================
// USER PROFILE
// ============================================================================
export const user = {
name: 'Gagan M',
displayname: 'Sir Blob',
username: 'sirblob',
hostname: 'engineering',
title: 'Engineering Student',
email: 'sirblob0@gmail.com',
location: 'USA (EAST)',
bio: `A engineer who loves making things. ` +
`I build fun coding projects, participate in game jams and hackathons, and enjoy games like Minecraft and Pokémon TCG Live. ` +
`I'm interested in Open Source, Game Development, Embedded Systems, and AI/ML.`,
// Prefer an absolute avatar URL if you want to pull directly from GitHub
avatar: '/blob_nerd.png',
// Social links - array of { name, icon (Iconify), link }
socials: [
{ name: 'GitHub', icon: 'mdi:github', link: 'https://github.com/SirBlobby' },
{ name: 'Gitea', icon: 'simple-icons:gitea', link: 'https://git.sirblob.co/SirBlob' },
{ name: 'LinkedIn', icon: 'mdi:linkedin', link: 'https://www.linkedin.com/in/gmanjunatha/' },
{ name: 'Devpost', icon: 'simple-icons:devpost', link: 'https://devpost.com/Sir_Blob_' },
{ name: 'Discord', icon: 'ic:baseline-discord', link: 'https://discord.com/users/sir_blob_' }
]
};
// ============================================================================
// SKILLS
// ============================================================================
export const skills = {
languages: ['Python', 'JavaScript', 'TypeScript', 'C', 'C++', 'Java', 'Node.js'],
frameworks: ['React', 'Electron', 'Svelte', 'Bootstrap', 'TailwindCSS', 'Discord.js', ],
applications: ['IntelliJ', 'VS Code', 'Git', 'Blender', 'Godot'],
platforms: ['Windows', 'Linux', 'macOS', 'Arduino', 'Raspberry Pi'],
tools: ['Git', 'Docker', 'Neovim', 'VS Code'],
databases: ['MongoDB', 'SQLite'],
interests: ['Open Source', 'Game Development', 'Embedded Systems', 'AI/ML']
};