Files
website/src/lib/config/user.ts
T
2026-06-30 21:04:06 +00:00

61 lines
2.6 KiB
TypeScript

// ============================================================================
// USER PROFILE
// ============================================================================
export const user = {
name: 'Gagan "Adith" M',
displayname: 'Sir Blob',
username: 'sirblob',
hostname: 'engineering',
title: 'Engineering Student',
email: '[email protected]',
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: '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_' }
]
};
// ============================================================================
// LINKS PAGE
// ============================================================================
export interface LinkItem {
name: string;
icon: string;
link: string;
}
export const links: LinkItem[] = [
{ name: 'GitHub', icon: 'mdi:github', link: 'https://github.com/SirBlobby' },
{ 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_' },
{ name: 'Email', icon: 'mdi:email', link: `mailto:${user.email}` },
// { name: 'Blog', icon: 'mdi:rss', link: 'https://blog.sirblob.co' }
];
// ============================================================================
// 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']
};