-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.tsx
66 lines (65 loc) · 1.82 KB
/
profile.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { EmailIcon } from '@/components/icons/socials/email';
import { FrontendMentorIcon } from '@/components/icons/socials/frontend-mentor';
import { GithubIcon } from '@/components/icons/socials/github';
import { HashnodeIcon } from '@/components/icons/socials/hashnode';
import { LinkedInIcon } from '@/components/icons/socials/linkedin';
import { ResumeIcon } from '@/components/icons/socials/resume';
import { XIcon } from '@/components/icons/socials/x';
import { YouTubeIcon } from '@/components/icons/socials/youtube';
export const PROFILE = {
logoText: 'Som3aware',
name: 'Ahmed Abu Qahf',
headshot: '/avatar.webp',
title: 'Software Engineer',
description: `Hi, I'm Ahmed Ismail. I'm based in Tanta, Egypt.`,
socials: [
{
id: 'gmail',
platform: 'Mail',
link: 'mailto:[email protected]',
icon: <EmailIcon />,
},
{
id: 'twitter',
platform: 'X',
link: 'https://twitter.com/som3aware',
icon: <XIcon />,
},
{
id: 'github',
platform: 'GitHub',
link: 'https://github.com/ahmedsomaa',
icon: <GithubIcon />,
},
{
id: 'youtube',
platform: 'YouTube',
link: 'https://www.youtube.com/@the-final-lineup',
icon: <YouTubeIcon />,
},
{
id: 'linkedin',
platform: 'LinkedIn',
link: 'https://www.linkedin.com/in/som3aware/',
icon: <LinkedInIcon />,
},
{
id: 'hashnode',
platform: 'Hashnode',
link: 'https://som3aware.hashnode.dev/',
icon: <HashnodeIcon />,
},
{
id: 'frontend mentor',
platform: 'Frontend Mentor',
link: 'https://www.frontendmentor.io/profile/ahmedsomaa',
icon: <FrontendMentorIcon />,
},
{
id: 'resume',
platform: 'My Resume',
link: '/docs/my-resume.pdf',
icon: <ResumeIcon />,
},
],
};