-
Notifications
You must be signed in to change notification settings - Fork 28
/
data.ts
209 lines (203 loc) · 4.33 KB
/
data.ts
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
import { AiFillLinkedin, AiOutlineGithub } from "react-icons/ai"
import {
FaDev,
FaDiscord,
FaEye,
FaFacebookF,
FaRegListAlt,
FaRegNewspaper,
FaRegUser,
} from "react-icons/fa"
import { FiSend } from "react-icons/fi"
import { MdComputer, MdDashboard } from "react-icons/md"
import {
SiFigma,
SiFirebase,
SiFiverr,
SiNextdotjs,
SiNodedotjs,
} from "react-icons/si"
import About from "./components/aboutPage/About"
import Blogs from "./components/blogsPage/Blogs"
import DevBlogs from "./components/blogsPage/DevBlogs"
import Contact from "./components/contactPage/Contact"
import GuestBook from "./components/guestbookPage/GuestBook"
import Resume from "./components/resumePage/Resume"
import Stats from "./components/statistics/Stats"
import Works from "./components/worksPage/Works"
import {
ClientData,
MenuData,
ServiceData,
SocialMedia,
StatisticsData,
TestimonialData,
} from "./types"
export const menus: MenuData[] = [
{
id: 1,
label: "about",
Icon: FaRegUser,
Component: About,
},
{
id: 2,
label: "resume",
Icon: FaRegListAlt,
Component: Resume,
},
{
id: 3,
label: "works",
Icon: FaEye,
Component: Works,
},
{
id: 4,
label: "blog",
Icon: FaRegNewspaper,
Component: DevBlogs,
},
{
id: 5,
label: "stats",
Icon: MdDashboard,
Component: Stats,
},
{
id: 6,
label: "contact",
Icon: FiSend,
Component: Contact,
},
{
id: 7,
label: "guest book",
Icon: MdComputer,
Component: GuestBook,
},
]
export const socialMedia: SocialMedia[] = [
{
id: 1,
Icon: FaDev,
label: "Dev",
logoColor: "black",
mediaUrl: "https://www.dev.to/arafat4693",
info: "Follow me and read my articles on Dev.to",
},
{
id: 2,
Icon: FaFacebookF,
label: "Facebook",
logoColor: "#3b5998",
mediaUrl: "https://www.facebook.com/md.sunny.58910049",
info: "Follow me on Facebook",
},
{
id: 3,
Icon: AiOutlineGithub,
label: "Github",
logoColor: "#171515",
mediaUrl: "https://www.github.com/arafat4693",
info: "Star my projects on Github",
},
{
id: 4,
Icon: AiFillLinkedin,
label: "Linkedin",
logoColor: "#0072b1",
mediaUrl: "https://www.linkedin.com/in/arafat-freelancer",
info: "Let's connect on Linkedin",
},
{
id: 5,
Icon: FaDiscord,
label: "Discord",
logoColor: "#5865f2",
mediaUrl: "https://www.discord.com",
info: "Let's chat on Discord. My username - Tyrant#4185",
},
{
id: 6,
Icon: SiFiverr,
label: "Fiverr",
logoColor: "#00b22d",
mediaUrl: "https://www.fiverr.com/sunnyislam990",
info: "Hire me on fiverr as freelancer",
},
]
export const services: ServiceData[] = [
{
id: 1,
title: "Front-end",
Icon: SiNextdotjs,
description:
"Modern and mobile-ready website that will help you reach all of your marketing.",
},
{
id: 2,
title: "Back-end",
Icon: SiNodedotjs,
description:
"Back-end with a NoSQL DB and API written in a standard express router or tRPC.",
},
{
id: 3,
title: "UI/UX design",
Icon: SiFigma,
description:
"Modern user Interface trends with a highly professional and unique design.",
},
{
id: 4,
title: "Firebase",
Icon: SiFirebase,
description:
"Fully functional firebase app with authentication, firestore, storage, etc.",
},
]
export const clients: ClientData[] = [
{
id: 1,
linkLocation: "https://www.linkedin.com/",
imgLocation: "/images/lin.png",
},
{
id: 2,
linkLocation: "https://www.freelancer.com/",
imgLocation: "/images/freelancer.png",
},
{
id: 3,
linkLocation: "https://www.upwork.com/",
imgLocation: "/images/upwork.png",
},
{
id: 4,
linkLocation: "https://www.envato.com/",
imgLocation: "/images/envato.png",
},
]
export const quoteData: TestimonialData = {
id: "quote",
quote:
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand.",
userName: "Martin Fowler",
userProfession: "Software Developer",
userImage: { url: "/images/martin.jpg" },
}
export const statisticsData: StatisticsData[] = [
{
title: "stack",
info: "MERN or T3",
},
{
title: "projects",
info: "70+",
},
{
title: "clients",
info: "40+",
},
]