-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconfig.js
More file actions
113 lines (112 loc) · 4.1 KB
/
Copy pathconfig.js
File metadata and controls
113 lines (112 loc) · 4.1 KB
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
import { FaDiscord, FaGithub, FaMapPin } from "react-icons/fa";
import { HiCode, HiCube, HiDatabase, HiMail } from "react-icons/hi";
export const config = {
developer: {
name: "Fr3zy",
},
social: {
github: "Fr3zyy",
discord: "1155137511954337887"
},
NAV_ITEMS: [
{ href: '/projects', label: 'Projects' },
{ href: '/contact', label: 'Contact' }
],
recentTracks: true, // Enable/disable Spotify recent tracks
projects: [
{
id: 1,
title: "Personal Portfolio Website",
description: "A modern and responsive portfolio website to showcase my projects, skills, and experiences. Built with Next.js and styled using TailwindCSS, this site provides a seamless user experience and a clean design that adapts to all devices.",
image: "/projects/portfolio-app.png",
technologies: ["Next.js", "TailwindCSS", "Framer Motion", "Vercel"],
github: "https://github.com/fr3zyy/portfolio-website",
demo: "https://fr3zy.vercel.app"
},
{
id: 2,
title: "Code Share Website",
description: "A platform that allows users to share and review their code and profiles.",
image: "/projects/code-share-app.png",
technologies: ["Next.js", "MongoDB", "Express"],
demo: "https://nirvania.xyz"
},
{
id: 3,
title: "Wytra Bot",
description: "Enhance your server, simplify moderation, and boost engagement with a versatile Discord bot equipped with customizable commands and powerful features.",
image: "/projects/wytra-bot-app.png",
technologies: ["React", "Discord.js", "Node.js", "MongoDB"],
github: "https://github.com",
demo: "https://wytra.fun"
}
],
skills: [
{
title: "Frontend",
icon: <HiCode />,
description: "Modern web interfaces",
bgClass: "bg-blue-500/10",
iconClass: "text-blue-500",
skills: [
{ name: "Next.js", level: "Advanced", hot: true },
{ name: "React", level: "Advanced" },
{ name: "TailwindCSS", level: "Expert" },
{ name: "JavaScript", level: "Advanced" },
]
},
{
title: "Backend",
icon: <HiDatabase />,
description: "Server & Database",
bgClass: "bg-emerald-500/10",
iconClass: "text-emerald-500",
skills: [
{ name: "C#", level: "Advanced", hot: true },
{ name: "Node.js", level: "Advanced", hot: true },
{ name: "MSSQL", level: "Advanced", hot: true },
{ name: "MySQL", level: "Advanced", hot: true }
]
},
{
title: "Programs & Tools",
icon: <HiCube />,
description: "Development & Productivity Tools",
bgClass: "bg-orange-500/10",
iconClass: "text-orange-500",
skills: [
{ name: "VS Code", level: "Expert", hot: true },
{ name: "Postman", level: "Advanced" },
{ name: "Photoshop", level: "Intermediate" },
{ name: "Navicat", level: "Advanced" },
{ name: "Git", level: "Advanced" }
]
}
],
contactInfo: [
{
icon: <FaDiscord className="w-5 h-5" />,
label: "Discord",
value: "fr3zy",
link: `https://discord.com/users/1155137511954337887`
},
{
icon: <FaGithub className="w-5 h-5" />,
label: "GitHub",
value: "@fr3zy",
link: `https://github.com/fr3zyy`
},
{
icon: <HiMail className="w-5 h-5" />,
label: "Email",
value: "fr3zy@example.com",
link: "mailto:fr3zy@example.com"
},
{
icon: <FaMapPin className="w-5 h-5" />,
label: "Location",
value: "Turkey",
link: null
}
]
}