Skip to content

Commit 4bf3312

Browse files
Renewed Portfolio to v2.0.0 - New Design, UI, Performance Enhancements, and Bug Fixes (#722)
## v2.0.0 - New Renewed Portfolio This update brings a complete overhaul to the Portfolio project, including several major enhancements and fixes: ### New Features: - **New Design and UI:** A fresh, modern design with an improved user interface for a better user experience. - **Improved Performance:** Optimized code and resources to ensure faster load times and smoother interaction. - **Improved SEO:** Enhanced search engine optimization to increase visibility and ranking. - **Improved Functionality:** Added new features and fixed bugs to improve overall functionality and user interaction. ### Bug Fixes & Enhancements: - **Chatbot Backend Functionality:** Removed for now and will be added in a future version (planned for future release). - Related Issue: #383 - **Sign-in Authentication:** Not yet added. - Related Issue: #382 - **Migrated to App-Level Structure:** Refactored the code to migrate from `pages` to the new App-level structure, which now handles metadata and `<Head>` management automatically. - Related Issue: #317 - **<title> Usage Fix:** Fixed the issue where `<title>` was incorrectly used in `_document.js`'s `<Head>`. - Related Issue: #245 - **Lottie Performance Issue Resolved:** Removed Lottie due to performance concerns; will be reintroduced in future versions after optimization. - Related Issue: #156 - **Performance Score Issue Fixed:** Fixed the issues causing incorrect performance score reporting. - Related Issue: #128 This version sets a solid foundation for future growth and improvements, with further optimizations coming soon.
1 parent 2770a02 commit 4bf3312

File tree

55,483 files changed

+11164
-1889287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55,483 files changed

+11164
-1889287
lines changed

.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.env-example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GITHUB_TOKEN=youur_github_token

.eslintrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "next",
3+
"rules": {
4+
"react/prop-types": 0,
5+
"react/no-unescaped-entities": 0,
6+
// for use in edge api routes
7+
"@next/next/no-server-import-in-page": 0
8+
}
9+
}

.eslintrc.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ updates:
88
- package-ecosystem: "npm" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: "daily"
11+
interval: "weekly"

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
language: [ 'javascript', 'python' ]
41+
language: [ 'javascript' ]
4242
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
4343
# Use only 'java' to analyze code written in Java, Kotlin or both
4444
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both

.gitignore

Lines changed: 27 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,113 +1,37 @@
1-
# checkout more information at https://github.com/muhammad-fiaz/portfolio
2-
# Logs
3-
logs
4-
*.log
5-
npm-debug.log*
6-
yarn-debug.log*
7-
yarn-error.log*
8-
lerna-debug.log*
9-
10-
# Diagnostic reports (https://nodejs.org/api/report.html)
11-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12-
13-
# Runtime data
14-
pids
15-
*.pid
16-
*.seed
17-
*.pid.lock
18-
19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
22-
# Coverage directory used by tools like istanbul
23-
coverage
24-
*.lcov
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
252

26-
# nyc test coverage
27-
.nyc_output
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
287

29-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30-
.grunt
8+
# testing
9+
/coverage
3110

32-
# Bower dependency directory (https://bower.io/)
33-
bower_components
11+
# next.js
12+
/.next/
13+
/out/
3414

35-
# node-waf configuration
36-
.lock-wscript
15+
# production
16+
/build
3717

38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
18+
# misc
19+
.DS_Store
20+
*.pem
4021

41-
# Dependency directories
42-
jspm_packages/
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
.pnpm-debug.log*
4327

44-
# Include specific dependencies
45-
!node_modules/
46-
node_modules/*
47-
!node_modules/@fortawesome
48-
!node_modules/LICENSE.md
28+
# local env files
29+
.env*.local
4930

50-
# TypeScript v1 declaration files
51-
typings/
31+
# vercel
32+
.vercel
5233

53-
# TypeScript cache
34+
# typescript
5435
*.tsbuildinfo
55-
56-
# Optional npm cache directory
57-
.npm
58-
59-
# Optional eslint cache
60-
.eslintcache
61-
62-
# Microbundle cache
63-
.rpt2_cache/
64-
.rts2_cache_cjs/
65-
.rts2_cache_es/
66-
.rts2_cache_umd/
67-
68-
# Optional REPL history
69-
.node_repl_history
70-
71-
# Output of 'npm pack'
72-
*.tgz
73-
74-
# Yarn Integrity file
75-
.yarn-integrity
76-
77-
# dotenv environment variables file
78-
.env
79-
.env.test
80-
81-
# parcel-bundler cache (https://parceljs.org/)
82-
.cache
83-
84-
# Next.js build output
85-
.next
86-
87-
# Nuxt.js build / generate output
88-
.nuxt
89-
dist
90-
91-
# Gatsby files
92-
.cache/
93-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
94-
# https://nextjs.org/blog/next-9-1#public-directory-support
95-
# public
96-
97-
# vuepress build output
98-
.vuepress/dist
99-
100-
# Serverless directories
101-
.serverless/
102-
103-
# FuseBox cache
104-
.fusebox/
105-
106-
# DynamoDB Local files
107-
.dynamodb/
108-
109-
# TernJS port file
110-
.tern-port
111-
# Sentry Auth Token
112-
.sentryclirc
113-
/backend/bin/
36+
next-env.d.ts
37+
/.idea/

.idea/.gitignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/aws.xml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.idea/backend.iml

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)