altricade_portofolio/src/lib/constants.ts
Заид Омар Медхат | Zaid Omar Medhat fab8983d5c
Some checks failed
Deploy / deploy (push) Failing after 5m27s
init
2026-07-09 12:21:21 +05:00

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'