-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php
148 lines (144 loc) · 6.03 KB
/
config.php
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
<?php
/**
* If you want to add another icon, you need to modify ./source/_assets/js/global/create-simple-icons.js
*
* @see https://simpleicons.org/ for a list of all available icons.
*/
return [
'production' => false,
'baseUrl' => 'http://localhost:3000',
'siteTitle' => 'Yusuf Taufiqurrahman - Software Developer',
'siteName' => 'Yusuf Taufiqurrahman Personal Site',
'siteDescription' => 'Everything about me as a Software Developer',
'siteSections' => [
'home' => [
'descriptions' => [
'Hi, there!',
/**
* You must have 1 value that has class "js-typed-important".
*
* An array value having this class will be displayed immediately
* when the animation in the typed description is skipped.
*/
<<<HTML
<span class="js-typed-important">I'm Yusuf Taufiqurrahman</span>
HTML,
'A Software Developer',
'And Tech Enthusiast',
'Keep scrolling to know more about me!',
],
],
'about' => [
'image' => 'https://drive.google.com/uc?export=view&id=12KpXGn0SRgDJw5iXxzm4waLExpskR6-4',
'content' => <<<HTML
<span class="js-tippy" data-tippy-content="Who am I?">
<b>Software Developer</b> who loves creating high-quality products for internal users and teams,
</span>
<span class="js-tippy" data-tippy-content="What experience do I have?">
with over four years of experience in enterprise web-based projects such as ERP (Enterprise Resource Planning), E-commerce, E-catalog, and other application related to accounting, purchasing, and marketing.
</span>
HTML,
],
'skills' => [
['name' => 'PHP', 'icon' => 'php'],
['name' => 'Tailwind', 'icon' => 'tailwindcss'],
['name' => 'Node.js', 'icon' => 'nodedotjs'],
['name' => 'Alpine.js', 'icon' => 'alpinedotjs'],
['name' => 'JavaScript', 'icon' => 'javascript'],
['name' => 'MySQL', 'icon' => 'mysql'],
['name' => 'TypeScript', 'icon' => 'typescript'],
['name' => 'Git', 'icon' => 'git'],
['name' => 'Laravel', 'icon' => 'laravel'],
['name' => 'GitHub Actions', 'icon' => 'github'],
['name' => 'NestJs', 'icon' => 'nestjs'],
['name' => 'Docker', 'icon' => 'docker'],
],
'projects' => [
[
'title' => 'Lyricstify',
'description' => 'Command line based application to show synchronized Spotify lyrics in your terminal.',
'stacks' => ['Node.js', 'TypeScript', 'NestJs', 'RxJs'],
'links' => [
[
'name' => 'GitHub',
'icon' => 'github',
'url' => 'https://github.com/lyricstify/lyricstify',
],
[
'name' => 'NPM',
'icon' => 'npm',
'url' => 'https://www.npmjs.com/package/@lyricstify/lyricstify',
],
],
],
[
'title' => 'Basement Chat',
'description' => 'Real-time chat widget package for your Laravel application with flexible broadcast driver support.',
'stacks' => ['PHP', 'Laravel', 'TypeScript', 'AlpineJS', 'TailwindCSS'],
'links' => [
[
'name' => 'GitHub',
'icon' => 'github',
'url' => 'https://github.com/basement-chat/basement-chat',
],
[
'name' => 'Packagist',
'icon' => 'packagist',
'url' => 'https://packagist.org/packages/basement-chat/basement-chat',
],
],
],
[
'title' => 'Laravel Books API',
'description' => 'Fully documented & tested Laravel 9 RESTful books API scraped from Gramedia.',
'stacks' => ['PHP', 'Laravel'],
'links' => [
[
'name' => 'GitHub',
'icon' => 'github',
'url' => 'https://github.com/yusuftaufiq/laravel-books-api',
],
[
'name' => 'Postman Doc.',
'icon' => 'postman',
'url' => 'https://documenter.getpostman.com/view/14291055/UVyoVcj5',
],
],
],
[
'title' => 'Personal Portfolio Page',
'description' => 'Simple, responsive, and configurable static personal portfolio page.',
'stacks' => ['JavaScript', 'Blade', 'Tailwind CSS'],
'links' => [
[
'name' => 'GitHub',
'icon' => 'github',
'url' => 'https://github.com/yusuftaufiq/yusuftaufiq.com',
],
],
],
],
'contacts' => [
[
'icon' => 'github',
'name' => 'GitHub',
'url' => 'https://github.com/yusuftaufiq/',
],
[
'icon' => 'stackoverflow',
'name' => 'Stack Overflow',
'url' => 'https://stackoverflow.com/users/14496736/yusuf-t',
],
[
'icon' => 'linkedin',
'name' => 'LinkedIn',
'url' => 'https://www.linkedin.com/in/yusuftaufiq/',
],
[
'icon' => 'reddit',
'name' => 'Reddit',
'url' => 'https://www.reddit.com/user/yusuftaufiq',
]
],
],
];