-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.jsx
300 lines (292 loc) · 7.3 KB
/
constants.jsx
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/* eslint-disable no-unused-vars */
import {
IconMail,
IconLinkedin,
IconInstagram,
IconGithub,
} from "./src/components/Icons/index";
import html from "./public/skills/html.svg";
import css from "./public/skills/css.svg";
import javascript from "./public/skills/javascript.svg";
import react from "./public/skills/react.svg";
import bootstrap from "./public/skills/bootstrap5.svg";
import git from "./public/skills/git.svg";
import tailwind from "./public/skills/tailwind.svg";
import { FaXTwitter } from "react-icons/fa6";
import mongoDB from "./public/skills/mongoDB.svg";
import mysql from "./public/skills/mysql.svg";
import python from "./public/skills/python.svg";
import sass from "./public/skills/sass.svg";
import nodejs from "./public/skills/nodejs.svg";
import redux from "./public/skills/redux.svg";
import supabase from "./public/skills/supabase.svg";
import nextjs from "./public/skills/nextJS.webp";
import typescript from "./public/skills/typescript.svg";
import reactquery from "./public/skills/react-query.svg";
import materialui from "./public/skills/materialui.svg";
import redis from "./public/skills/redis.svg";
export const METADATA = {
author: "Supakun Thata",
title: "Portfolio | Supakun Thata",
description:
"Supakun Thata is a passionate Frontend Developer, dedicated to crafting aesthetic and modern apps that captivate and engage users.",
keywords: [
"Supakun Thata",
"Frontend Developer",
"React Native Developer",
"Software Engineer",
"Portfolio",
"Devfolio",
"Folio",
].join(", "),
};
export const MENULINKS = [
{
name: "Home",
ref: "home",
},
{
name: "About",
ref: "about",
},
{
name: "Experience",
ref: "experience",
},
{
name: "Projects",
ref: "projects",
},
{
name: "Contact",
ref: "contact",
},
];
export const TYPED_STRINGS = [
"I'm Frontend Developer",
"I like to learn things",
"I develop things for the web",
];
export const SOCIAL_LINKS = [
{
name: "mail",
url: "mailto: supakunt.thata@gmail.com",
img: <IconMail />,
},
{
name: "linkedin",
url: "https://www.linkedin.com/in/supakun-thata-437a62328/",
img: <IconLinkedin />,
},
{
name: "github",
url: "https://github.com/SupakunZ",
img: <IconGithub />,
},
{
name: "instagram",
url: "https://www.instagram.com/gunnkkun_/",
img: <IconInstagram />,
},
{
name: "twitter",
url: "https://x.com/GuNz246448",
img: <FaXTwitter style={{ width: "24px", height: "24px" }} />,
},
];
export const SKILLS = [
{
tools: "Html",
img: html,
},
{
tools: "Css",
img: css,
},
{
tools: "Javascript",
img: javascript,
},
{
tools: "Typescript",
img: typescript,
},
{
tools: "React",
img: react,
},
{
tools: "NextJS",
img: nextjs,
},
{
tools: "Redux",
img: redux,
},
{
tools: "Tailwind",
img: tailwind,
},
{
tools: "Bootstrap",
img: bootstrap,
},
{
tools: "MaterialUI",
img: materialui,
},
{
tools: "Git",
img: git,
},
{
tools: "Python",
img: python,
},
{
tools: "Sass",
img: sass,
},
{
tools: "Nodejs",
img: nodejs,
},
{
tools: "MongoDB",
img: mongoDB,
},
{
tools: "Mysql",
img: mysql,
},
{
tools: "Supabase",
img: supabase,
},
{
tools: "Redis",
img: redis,
},
{
tools: "ReactQuery",
img: reactquery,
},
];
export const experiences = [
{
id: 1,
title: "Frontend Developer",
company: "FullStack Developer Bootcamp | Westride",
duration: "(April 2024 - August 2024)",
},
{
id: 2,
title: "Mechanical Engineer",
company: "Site Engineer Air Conditioning | First Technology",
duration: "(Oct 2023 - Mar 2024)",
},
{
id: 3,
title: "Gnss RTK Navigation",
company: "Internship Python Developer | GISTDA",
duration: "(Apr 2022 - Dec 2022)",
},
];
export const PROJECTS = [
{
name: "Pokédex",
image: "/projects/pokedex02.webp",
blurImage: "/projects/pokedex.webp",
description: "Pokédex App using PokeAPI + ReactJs 🌏",
gradient: ["#F14658", "#DC2537"],
url: "https://github.com/SupakunZ/Pokedex_App",
tech: ["typescript", "vitejs", "react", "tailwind", "sass"],
},
{
name: "Tesla",
image: "/projects/tesla.webp",
blurImage: "/projects/tesla.webp",
description: "Tesla UI clone using ReactJs + Bootstrap5 🚗",
gradient: ["#FFA62E", "#EA4D2C"],
url: "https://tesla-cloness.netlify.app/",
tech: ["vitejs", "react", "bootstrap5"],
},
{
name: "Portfolio",
image: "/projects/portfolio_2.webp",
blurImage: "/projects/portfolio_2.webp",
description: "Portfolio using Tailwind CSS + NodeJS 🚀",
gradient: ["#5800ca", "#b37afd"],
url: "https://github.com/SupakunZ/Portfolio",
tech: ["vitejs", "react", "tailwind", "sass", "nodejs", "mongoDB2"],
},
{
name: "E-commerce",
image: "/projects/ecommerce.webp",
blurImage: "/projects/ecommerce.webp",
description: "E-commerce using Tailwind CSS + NodeJS 🔥",
gradient: ["#45B649", "#DCE35B"],
url: "https://ecommercr.netlify.app/",
tech: ["vitejs", "react", "tailwind", "nodejs", "mongoDB2"],
},
{
name: "Restaurant",
image: "/projects/restaurant.webp",
blurImage: "/projects/restaurant.webp",
description: "Restaurant using Redux + Supabase 👽",
gradient: ["#021B79", "#0575E6"],
url: "https://restauranntz.vercel.app/",
tech: ["redux", "nextJS", "redis", "tailwind", "supabase"],
},
{
name: "Gunglz Chatbot",
image: "/projects/chatbot.webp",
blurImage: "/projects/chatbot.webp",
description: "AI Chatbot using NextJs + Tailwind CSS 🤖",
gradient: ["#536976", "#BBD2C5"],
url: "https://gunglz-chatbot.vercel.app/",
tech: ["nextJS", "tailwind"],
},
{
name: "Gnss-Rtk",
image: "/projects/gnss-rtk.webp",
blurImage: "/projects/gnss-rtk.webp",
description: "GNSS-RTK Navigation App using Python 🏆",
gradient: ["#00416A", "#E4E5E6"],
url: "https://github.com/SupakunZ/GNSS_RTK",
tech: ["python", "numpy"],
},
{
name: "Crypto Tracker",
image: "/projects/crypto_image.webp",
blurImage: "/projects/crypto_image.webp",
description: "Crypto Tracker App using NextJs + TS 💸💰",
gradient: ["#9140ac", "#ce44bc"],
url: "https://github.com/SupakunZ/Crypto_tracker",
tech: ["typescript", "nextJS", "react-query", "tailwind"],
},
{
name: "Admin Dashboard",
image: "/projects/dashboard_image.webp",
blurImage: "/projects/dashboard_image.webp",
description: "Admin Dashboard using NextJs + MUI 🎃",
gradient: ["#667db6", "#0082c8"],
url: "https://adminz-dashboard.vercel.app/login",
tech: ["nextJS", "tailwind", "materialui", "nextauth"],
},
];
export const personalData = {
name: "Supakun Thata",
profile: "/profile.png",
designation: "Software Developer",
email: "supakunt.thata@gmail.com",
phone: "0622787171",
address: "Chiang Rai, Thailand - 57160 ",
github: "https://github.com/SupakunZ",
instagram: "https://www.instagram.com/gunnkkun_/",
linkedIn: "https://www.linkedin.com/in/supakun-thata-437a62328/",
twitter: "https://x.com/GuNz246448",
devUsername: "NEOSPEX",
resume:
"https://drive.google.com/file/d/1W6ewtg6mlrHc5uVtp2IQF1BNbgqV1r-n/view?usp=sharing",
};