mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 12:27:17 +00:00
Merge branch 'main' into add-skype-and-telegram-to-social-links
This commit is contained in:
27
README.md
27
README.md
@@ -358,6 +358,9 @@ const config = {
|
||||
'--rounded-btn': '3rem',
|
||||
},
|
||||
},
|
||||
|
||||
// Optional Footer. Supports plain text or HTML.
|
||||
footer: `Copyright © 2023 John Doe`,
|
||||
};
|
||||
```
|
||||
|
||||
@@ -369,7 +372,7 @@ The default theme can be specified.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
themeConfig: {
|
||||
defaultTheme: 'light',
|
||||
@@ -386,7 +389,7 @@ You can create your own custom theme by modifying these values. Theme `procyon`
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
themeConfig: {
|
||||
customTheme: {
|
||||
@@ -409,7 +412,7 @@ module.exports = {
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
googleAnalytics: {
|
||||
id: '',
|
||||
@@ -425,7 +428,7 @@ Besides tracking visitors, it will track `click events` on projects and blog pos
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
hotjar: {
|
||||
id: '',
|
||||
@@ -448,7 +451,7 @@ You can link your social media services you're using, including LinkedIn, Twitte
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
social: {
|
||||
linkedin: 'ariful-alam',
|
||||
@@ -475,7 +478,7 @@ To showcase your skills provide them here.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
skills: ['JavaScript', 'React.js'],
|
||||
};
|
||||
@@ -489,7 +492,7 @@ Provide your job history in `experiences`.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
experiences: [
|
||||
{
|
||||
@@ -518,7 +521,7 @@ Provide your education history in `education`.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
education: [
|
||||
{
|
||||
@@ -545,7 +548,7 @@ Provide your industry certifications in `certifications`.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
certifications: [
|
||||
{
|
||||
@@ -568,7 +571,7 @@ Your public repo from GitHub will be displayed in the `Github Projects` section
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
github: {
|
||||
username: 'arifszn',
|
||||
@@ -588,7 +591,7 @@ In this section you can showcase your external/personal projects.
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
externalProjects: [
|
||||
{
|
||||
@@ -607,7 +610,7 @@ If you have [medium](https://medium.com) or [dev](https://dev.to) account, you c
|
||||
|
||||
```js
|
||||
// gitprofile.config.js
|
||||
module.exports = {
|
||||
const config = {
|
||||
// ...
|
||||
blog: {
|
||||
source: 'dev',
|
||||
|
||||
Reference in New Issue
Block a user