-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.config.ts
More file actions
91 lines (83 loc) · 2.5 KB
/
Copy pathlinks.config.ts
File metadata and controls
91 lines (83 loc) · 2.5 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
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2025 germondai - https://github.com/germondai
import type { LinksConfig } from './src/types/config'
const config: LinksConfig = {
profile: {
name: 'Germond',
username: 'germondai',
bio: 'Aspiring Full-Stack Web Developer',
avatar: 'https://github.com/germondai.png',
verified: true,
},
socials: [
{ platform: 'website', url: 'https://germondai.com' },
{ platform: 'github', url: 'https://github.com/germondai' },
{ platform: 'instagram', url: 'https://instagram.com/germondai' },
{ platform: 'discord', url: 'https://discord.gg/6xU897X' },
{ platform: 'youtube', url: 'https://youtube.com/@germondai?sub_confirmation=1' },
{ platform: 'twitch', url: 'https://twitch.tv/germondai' },
{ platform: 'email', url: 'mailto:germondai@gmail.com' },
],
links: [
{
title: 'Portfolio',
url: 'https://germondai.com',
icon: 'https://germondai.com/skull.ico',
description: 'My personal portfolio web',
slug: 'portfolio',
},
{
title: 'Mentorize',
url: 'https://mentorize.me',
icon: 'https://mentorize.me/favicon.ico',
description: 'Where mentors help you memorize',
slug: 'mentorize',
},
{
title: 'Chronitask',
url: 'https://chronitask.germondai.com',
icon: 'https://chronitask.germondai.com/assets/img/chronitask.ico',
description: 'Your personal time keeper',
slug: 'chronitask',
},
{
title: 'GitHub',
url: 'https://github.com/germondai',
icon: 'icon:github:mono:fff',
description: 'Open source projects & contributions',
slug: 'gh',
},
{
title: '@germondai/links',
url: 'https://github.com/germondai/links',
icon: 'icon:nextjs:mono:fff',
description: 'This project - fork it and make it yours',
style: 'neon',
},
],
appearance: {
theme: 'phantom',
font: 'Poppins',
linkStyle: 'default',
glassOpacity: 0.08,
blur: 20,
avatarGlow: true,
backgroundAnimation: true,
},
effects: {
beams: true,
particles: true,
lensFlares: true,
noiseTexture: true,
},
seo: {
title: "Germond's Links",
description: 'Aspiring Full-Stack Web Developer.',
twitterHandle: '@germondai',
keywords: ['germondai', 'links', 'portfolio', 'web developer', 'full-stack'],
locale: 'en_US',
canonicalUrl: 'https://links.germondai.com',
mainSiteUrl: 'https://germondai.com',
},
}
export default config