Update gitprofile.config.ts

This commit is contained in:
√(noham)²
2024-02-17 11:33:19 +01:00
parent d2d606650c
commit c28f9763e5

View File

@@ -2,25 +2,25 @@
const CONFIG = { const CONFIG = {
github: { github: {
username: 'arifszn', // Your GitHub org/user name. (This is the only required config) username: 'nohamr', // Your GitHub org/user name. (This is the only required config)
}, },
/** /**
* If you are deploying to https://<USERNAME>.github.io/, for example your repository is at https://github.com/arifszn/arifszn.github.io, set base to '/'. * If you are deploying to https://<USERNAME>.github.io/, for example your repository is at https://github.com/arifszn/arifszn.github.io, set base to '/'.
* If you are deploying to https://<USERNAME>.github.io/<REPO_NAME>/, * If you are deploying to https://<USERNAME>.github.io/<REPO_NAME>/,
* for example your repository is at https://github.com/arifszn/portfolio, then set base to '/portfolio/'. * for example your repository is at https://github.com/arifszn/portfolio, then set base to '/portfolio/'.
*/ */
base: '/gitprofile/', base: '/',
projects: { projects: {
github: { github: {
display: true, // Display GitHub projects? display: true, // Display GitHub projects?
header: 'Github Projects', header: 'Github Projects',
mode: 'automatic', // Mode can be: 'automatic' or 'manual' mode: 'automatic', // Mode can be: 'automatic' or 'manual'
automatic: { automatic: {
sortBy: 'stars', // Sort projects by 'stars' or 'updated' sortBy: 'updated', // Sort projects by 'stars' or 'updated'
limit: 8, // How many projects to display. limit: 8, // How many projects to display.
exclude: { exclude: {
forks: false, // Forked projects will not be displayed if set to true. forks: true, // Forked projects will not be displayed if set to true.
projects: [], // These projects will not be displayed. example: ['arifszn/my-project1', 'arifszn/my-project2'] projects: ['nohamr/NohamR.github.io'], // These projects will not be displayed. example: ['arifszn/my-project1', 'arifszn/my-project2']
}, },
}, },
manual: { manual: {
@@ -52,46 +52,46 @@ const CONFIG = {
}, },
}, },
seo: { seo: {
title: 'Portfolio of Ariful Alam', title: 'Portfolio of Noham Rivoirard',
description: '', description: '',
imageURL: '', imageURL: 'https://avatars.githubusercontent.com/u/100566912?v=4',
}, },
social: { social: {
linkedin: 'ariful-alam', // linkedin: 'ariful-alam',
twitter: 'arif_szn', twitter: 'Noo0ham',
mastodon: 'arifszn@mastodon.social', // mastodon: 'arifszn@mastodon.social',
facebook: '', // facebook: '',
instagram: '', instagram: 'no.0ham',
youtube: '', // example: 'pewdiepie' // youtube: '', // example: 'pewdiepie'
dribbble: '', dribbble: '',
behance: '', behance: '',
medium: 'arifszn', // medium: 'arifszn',
dev: 'arifszn', // dev: 'arifszn',
stackoverflow: '', // example: '1/jeff-atwood' stackoverflow: '', // example: '1/jeff-atwood'
skype: '', skype: '',
telegram: '', telegram: '',
website: 'https://www.arifszn.com', website: 'https://noh.am',
phone: '', phone: '',
email: 'arifulalamszn@gmail.com', email: 'noham.rivoirard@gmail.com',
}, },
resume: { resume: {
fileUrl: fileUrl:
'https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf', // Empty fileUrl will hide the `Download Resume` button. '', // Empty fileUrl will hide the `Download Resume` button.
}, },
skills: [ skills: [
'PHP', // 'PHP',
'Laravel', // 'Laravel',
'JavaScript', 'JavaScript',
'React.js', // 'React.js',
'Node.js', // 'Node.js',
'Nest.js', // 'Nest.js',
'MySQL', // 'MySQL',
'PostgreSQL', // 'PostgreSQL',
'Git', 'Git',
'Docker', 'Docker',
'PHPUnit', // 'PHPUnit',
'CSS', 'CSS',
'Antd', // 'Antd',
'Tailwind', 'Tailwind',
], ],
experiences: [ experiences: [
@@ -133,11 +133,11 @@ const CONFIG = {
}, },
], ],
// Display articles from your medium or dev account. (Optional) // Display articles from your medium or dev account. (Optional)
blog: { // blog: {
source: 'dev', // medium | dev // source: 'dev', // medium | dev
username: 'arifszn', // to hide blog section, keep it empty // username: 'arifszn', // to hide blog section, keep it empty
limit: 3, // How many articles to display. Max is 10. // limit: 3, // How many articles to display. Max is 10.
}, // },
googleAnalytics: { googleAnalytics: {
id: '', // GA3 tracking id/GA4 tag id UA-XXXXXXXXX-X | G-XXXXXXXXXX id: '', // GA3 tracking id/GA4 tag id UA-XXXXXXXXX-X | G-XXXXXXXXXX
}, },
@@ -147,15 +147,15 @@ const CONFIG = {
snippetVersion: 6, snippetVersion: 6,
}, },
themeConfig: { themeConfig: {
defaultTheme: 'nord', defaultTheme: 'dim',
// Hides the switch in the navbar // Hides the switch in the navbar
// Useful if you want to support a single color mode // Useful if you want to support a single color mode
disableSwitch: false, disableSwitch: true,
// Should use the prefers-color-scheme media-query, // Should use the prefers-color-scheme media-query,
// using user system preferences, instead of the hardcoded defaultTheme // using user system preferences, instead of the hardcoded defaultTheme
respectPrefersColorScheme: false, respectPrefersColorScheme: true,
// Display the ring in Profile picture // Display the ring in Profile picture
displayAvatarRing: true, displayAvatarRing: true,
@@ -210,11 +210,11 @@ const CONFIG = {
}, },
// Optional Footer. Supports plain text or HTML. // Optional Footer. Supports plain text or HTML.
footer: `Made with <a // footer: `Made with <a
class="text-primary" href="https://github.com/arifszn/gitprofile" // class="text-primary" href="https://github.com/arifszn/gitprofile"
target="_blank" // target="_blank"
rel="noreferrer" // rel="noreferrer"
>GitProfile</a> and ❤️`, // >GitProfile</a> and ❤️`,
enablePWA: true, enablePWA: true,
}; };