29 lines
707 B
TypeScript
29 lines
707 B
TypeScript
import { Briefcase, Github, Linkedin, Send } from 'lucide-react'
|
|
import type { LucideIcon } from 'lucide-react'
|
|
|
|
export interface SocialLink {
|
|
icon: LucideIcon
|
|
href: string
|
|
label: string
|
|
}
|
|
|
|
export const SOCIAL_LINKS: Array<SocialLink> = [
|
|
{
|
|
icon: Github,
|
|
href: 'https://github.com/altricade',
|
|
label: 'GitHub',
|
|
},
|
|
{
|
|
icon: Linkedin,
|
|
href: 'https://www.linkedin.com/in/altricade/',
|
|
label: 'LinkedIn',
|
|
},
|
|
{
|
|
icon: Briefcase,
|
|
href: 'https://nizhny-tagil.hh.ru/resume/df78aefbff0be340910039ed1f46394f7a3157',
|
|
label: 'HeadHunter',
|
|
},
|
|
{ icon: Send, href: 'https://t.me/altricade', label: 'Telegram' },
|
|
]
|
|
|
|
export const CONTACT_EMAIL = 'omar.m.zaid@hotmail.com'
|